spring boot不同环境读取不同配置

具体做法:

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

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

      [plain] view plain copy

      1. profile = dev_envrimont

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

      1 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

      4、Controller

      [java] view plain copy

      1. @Autowired
      2. 2     private Environment env;
      3. 3
      4. 4     @RequestMapping("/testProfile")
      5. 5     public String testProfile(){
      6. 6         return env.getProperty("profile");
      7. 7     }

      测试

      • 上述代码执行后的结果是: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去读
  • 本文转自:http://blog.csdn.net/lazycheerup/article/details/51915185

spring boot中,可以通过在application.yml配置文件中,配置多个不同的profile,实现在不同的环境(比如开发、测试和生产环境)使用不同的配置变量。

具体配置如下(application.yml中的内容):

[plain] view plain copy

  1. server:
  2. port: 8082
  3. # 默认的profile为dev,其他环境通过指定启动参数使用不同的profile,比如:
  4. #   测试环境:java -jar my-spring-boot.jar --spring.profiles.active=test
  5. #   生产环境:java -jar my-spring-boot.jar --spring.profiles.active=prod
  6. spring:
  7. profiles:
  8. active: dev
  9. ---
  10. # 开发环境配置
  11. spring:
  12. profiles: dev
  13. mysql:
  14. ipPort: localhost:3306
  15. ---
  16. # 测试环境配置
  17. spring:
  18. profiles: test
  19. mysql:
  20. ipPort: 192.168.0.12:8066
  21. ---
  22. # 生产环境配置
  23. spring:
  24. profiles: prod
  25. mysql:
  26. ipPort: 192.168.0.13:8066


使用方法:

通过指定启动参数使用不同的profile,比如:
#   测试环境:Java -jar my-spring-boot.jar --spring.profiles.active=test
#   生产环境:java -jar my-spring-boot.jar --spring.profiles.active=prod

源代码地址:https://github.com/xujijun/my-spring-boot

本文转自:http://blog.csdn.net/clementad/article/details/51777621

时间: 2024-10-09 17:16:18

spring boot不同环境读取不同配置的相关文章

Spring Boot应用的后台运行配置

酱油一篇,整理一下关于Spring Boot后台运行的一些配置方式.在介绍后台运行配置之前,我们先回顾一下Spring Boot应用的几种运行方式: 运行Spring Boot的应用主类 使用Maven的Spring Boot插件mvn spring-boot:run来运行 打成jar包后,使用java -jar运行 我们在开发的时候,通常会使用前两种,而在部署的时候往往会使用第三种.但是,我们在使用java -jar来运行的时候,并非后台运行.下面我们分别针对Windows和Linux/Uni

[转]Spring Boot应用的后台运行配置

转自:http://blog.didispace.com/spring-boot-run-backend/ 酱油一篇,整理一下关于Spring Boot后台运行的一些配置方式.在介绍后台运行配置之前,我们先回顾一下Spring Boot应用的几种运行方式: 运行Spring Boot的应用主类 使用Maven的Spring Boot插件mvn spring-boot:run来运行 打成jar包后,使用java -jar运行 我们在开发的时候,通常会使用前两种,而在部署的时候往往会使用第三种.但是

JAR(Spring Boot)应用的后台运行配置

酱油一篇,整理一下关于Spring Boot后台运行的一些配置方式.在介绍后台运行配置之前,我们先回顾一下Spring Boot应用的几种运行方式: 运行Spring Boot的应用主类 使用Maven的Spring Boot插件mvn spring-boot:run来运行 打成jar包后,使用java -jar运行 我们在开发的时候,通常会使用前两种,而在部署的时候往往会使用第三种.但是,我们在使用java -jar来运行的时候,并非后台运行.下面我们分别针对Windows和Linux/Uni

Spring Boot 启动(二) 配置详解

Spring Boot 启动(二) 配置详解 Spring 系列目录(https://www.cnblogs.com/binarylei/p/10198698.html) Spring Boot 配置文件加载顺序 Spring Boot 配置文件加载分析 - ConfigFileApplicationListener 一.Spring Framework 配置 略... 二.Spring Boot 配置 2.1 随机数配置 name.value=${random.int} name.int=${

spring boot 开发环境搭建(Eclipse)

Spring Boot 集成教程 Spring Boot 介绍 Spring Boot 开发环境搭建(Eclipse) Spring Boot Hello World (restful接口)例子 spring boot 连接Mysql spring boot配置druid连接池连接mysql spring boot集成mybatis(1) spring boot集成mybatis(2) – 使用pagehelper实现分页 spring boot集成mybatis(3) – mybatis ge

Spring boot 的 properties 属性值配置 application.properties 与 自定义properties

配置属性值application.properties 文件直接配置: com.ieen.super.name="MDD" 自定义properties文件配置:src/main/resources/conf/boot.properties com.ieen.boot.name="123" com.ieen.boot.value="456" 调用方法@Value 注解调用application.properties属性值: @Value("

spring boot application.properties文件外部配置

spring boot application.properties文件外部配置 官方文档 原文地址:https://www.cnblogs.com/lwmp/p/9836791.html

自定义的Spring Boot starter如何设置自动配置注解

本文首发于个人网站:自定义的Spring Boot starter如何设置自动配置注解 在Spring Boot实战之定制自己的starter一文最后提到,触发Spring Boot的配置过程有两种方法: spring.factories:由Spring Boot触发探测classpath目录下的类,进行自动配置: @Enable:有时需要由starter的用户触发*查找自动配置文件的过程. 实战 接着上篇文章的例子,首先将spring.factories中的内容注释掉 #org.springf

Spring Boot+Profile实现不同环境读取不同配置

文件结构如下: 但是官方推荐放在config文件夹下. 作用: 不同环境的配置设置一个配置文件,例如:dev环境下的配置配置在application-dev.properties中.prod环境下的配置配置在application-prod.properties中. 使用: 1.在applicaiton.properties中指定,比如spring.profiles.active=dev 2.启动时指定参数,比如java -jar xxx.jar --spring.profiles.active