服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|JavaScript|易语言|

服务器之家 - 编程语言 - Java教程 - springboot多模块多环境配置文件问题(动态配置生产和开发环境)

springboot多模块多环境配置文件问题(动态配置生产和开发环境)

2021-09-06 10:43飞火龙在天 Java教程

这篇文章主要介绍了springboot多模块多环境配置文件问题(动态配置生产和开发环境),文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧

第一种情况:

spring.profiles.active=环境变量

springboot多模块多环境配置文件问题(动态配置生产和开发环境)

配置两个环境的,可根据实际需要增加环境模式(开发环境dev,测试环境test,回归坏境retu,预生产环境pre,生产环境prod,等等)

dev代表开发环境:

springboot多模块多环境配置文件问题(动态配置生产和开发环境)

prod代表生产环境

springboot多模块多环境配置文件问题(动态配置生产和开发环境)

pom.xml里面配置profiles:

  1. <profiles>
  2. <profile>
  3. <id>dev</id>
  4. <activation>
  5. <!-- 默认激活-->
  6. <activeByDefault>true</activeByDefault>
  7. </activation>
  8. <properties>
  9. <spring.profiles.active>dev</spring.profiles.active>
  10. </properties>
  11. </profile>
  12. <profile>
  13. <id>prod</id>
  14. <properties>
  15. <spring.profiles.active>prod</spring.profiles.active>
  16. </properties>
  17. </profile>
  18. </profiles>

springboot多模块多环境配置文件问题(动态配置生产和开发环境)

系统环境变量配置:

springboot多模块多环境配置文件问题(动态配置生产和开发环境)

在本地,如果在这些文件里面配置端口和路径:

appilacton.yml:

  1. server:
  2. port: 8087
  3. servlet:
  4. context-path: /miservice

application-dev.yml:

  1. server:
  2. port: 8088
  3. servlet:
  4. context-path: /miservice-dev

application-prod.yml:

  1. server:
  2. port: 8087
  3. servlet:
  4. context-path: /miservice

有效的是:8088那个配置。

在本地,如果分环境没有配置,就以主环境为主:

appilacton.yml:

  1. server:
  2. port: 8087
  3. servlet:
  4. context-path: /miservice

application-prod.yml:

  1. server:
  2. port: 8089
  3. servlet:
  4. context-path: /miservice-prod

则是8087这个是有效的。

小结1:

application.yml引入配置为:

  1. spring:
  2. profiles:
  3. active: ${env}

即:配置读取顺序为:application.yml>>application-dev.yml

第二种情况:

如果想多个模块的配置文件都起作用,可将application.yml文件配置到具体的模块去:

  1. spring:
  2. profiles:
  3. active: miservice, ${env}

springboot多模块多环境配置文件问题(动态配置生产和开发环境)

springboot多模块多环境配置文件问题(动态配置生产和开发环境)

在application.yml和application-miservice.yml和application-dev.yml三个文件中:如果都有端口或路径配置,则读取application-dev.yml里面的配置,关闭application-dev.yml里面的配置则读取application-miservice.yml里面的配置,最后读取application.yml

里面的配置。

application.yml引入配置为:

  1. spring:
  2. profiles:
  3. active: miservice, ${env}

即:配置读取顺序为:application-dev.yml>>application-miservice.yml>>application.yml

修订一下:上面的结论是刚开始总结的,后面发现读取顺序是按文件的顺序从下到上读取的。即按结构顺序

到此这篇关于springboot多模块多环境配置文件问题(动态配置生产和开发环境)的文章就介绍到这了,更多相关springboot多模块多环境内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://blog.csdn.net/qq_23145857/article/details/90473667?

延伸 · 阅读

精彩推荐