热门IT资讯网

SpringBoot ------------spring.profiles.active 分区配置

发表于:2024-11-23 作者:热门IT资讯网编辑
编辑最后更新 2024年11月23日,Spring Boot 的 Profiles 用于分区配置好处:可以通过spring.profiles.active 进行不同环境切换配置位置:Spring Boot 项目下 application.

Spring Boot 的 Profiles 用于分区配置

好处:可以通过spring.profiles.active 进行不同环境切换

配置位置:Spring Boot 项目下 application.properties

配置格式: (application-{profile}.properties) 会默认按照配置加载相应的配置文件

配置示例:
application-dev.properties
application-test.properties
application-prod.properties

              spring.profiles.active=test 此时读取application-test-properties文件              spring.profiles.active: prod,proddb,prodmq  同时激活三个配置

扩展:spring.profiles.include 用于叠加profile


配置加载方式

  1. 在application.properties中固定写死
  2. 通过调用执行命令切换环境调用

通常情况下第二种方式更适用于正式研发,代码如下:

1、更改application.xml
由spring.profiles.active=dev更改为spring.profiles.active=@profileActive@

2、更改pom.xml

dev

dev
true
compile


true



test

test
true
provided



demo

demo
true
provided



pro

pro
true
provided


3、在maven打包的时候执行命令
mvn clean ×××tall -Dmaven.test.skip=true -Ptest

4、在application 执行命令
-Dspring.profiles.active=dev

0