码迷,mamicode.com
首页 > 编程语言 > 详细

第十四章 springboot + profile(不同环境读取不同配置)

时间:2017-07-13 16:05:15      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:mongodb   image   return   spring   环境   xxx   ppi   选中   代码   

具体做法:

技术分享

  • 不同环境的配置设置一个配置文件,例如:dev环境下的配置配置在application-dev.properties中;prod环境下的配置配置在application-prod.properties中。
  • 在application.properties中指定使用哪一个文件

1、application-dev.properties(dev环境下的配置)

 profile = dev_envrimont

2、application-prod.properties(prod环境下的配置)

profile = prod_envrimont

3、application.properties

1 spring.data.mongodb.uri=mongodb://192.168.22.110:27017/myfirstMongodb
2 
3 #spring.profiles.active
4 spring.profiles.active=dev

说明:上边的配置表示使用dev环境下的配置。

注意:spring.data.mongodb.uri=mongodb://192.168.22.110:27017/myfirstMongodb该配置是application-dev.properties没有的配置

4、Controller

@Autowired
    private Environment env;
        
    @RequestMapping("/testProfile")
    public String testProfile(){
        return env.getProperty("profile");
    }

测试

  • 上述代码执行后的结果是:dev_envrimont和mongodb://192.168.22.110:27017/myfirstMongodb
  • 如果application.properties的配置改为:spring.profiles.active=prod,则结果是:prod_envrimont
  • 如果application.properties的配置改为:spring.profiles.active=prod,而application.properties中也配置了profile=xxx(不管该配置配置在spring.profiles.active=prod的上方还是下方),这个时候结果是:prod_envrimont
  • 如果application.properties的配置改为:spring.profiles.active=prod,而application.properties中也配置了profile=xxx(不管该配置配置在spring.profiles.active=prod的上方还是下方),但是application-prod.properties删掉了profile = prod_envrimont,这个时候结果是:xxx

结论:

  • 各个环境公共的配置写在application.properties中
  • 各个模块独有的配置配置在自己的application-{xxx}.properties文件中
  • 程序读取的时候优先读取application.properties中选中的profile的配置,若读不到才会从application.properties去读

第十四章 springboot + profile(不同环境读取不同配置)

标签:mongodb   image   return   spring   环境   xxx   ppi   选中   代码   

原文地址:http://www.cnblogs.com/sunny3096/p/7160079.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!