标签:mongodb image return spring 环境 xxx ppi 选中 代码
具体做法:
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"); }
测试:
结论:
第十四章 springboot + profile(不同环境读取不同配置)
标签:mongodb image return spring 环境 xxx ppi 选中 代码
原文地址:http://www.cnblogs.com/sunny3096/p/7160079.html