springboot配置多个环境的properties之 spring.profiles.active=@profiles.active@的含义

yml配置文件是我们在真实工作中经常会使用的配置文件的格式,有时候我们会遇到些我们没有遇到过的新的表现形式。下面我将会谈谈我在工作中遇到的一个日志配置文件比较有意思的表现形式:

 

spring.profiles.active=@profiles.active@的含义

spring.profiles.active=@profiles.active@ ,其实是配合 maven profile进行选择不同配置文件进行启动。

当执行mvn clean package -P test命令时, @profiles.active@ 会替换成 test

打开 jar包,即可看到:

案例

1、构建一个springboot 项目

这里使用idea进行构建的,这个过程省略,在默认的application.properties文件中配置:spring.profiles.active=@profiles.active@ 

2、在pom文件配置 各个环境对应的profile

<profiles>
        <profile>
            <!-- 生产环境 -->
            <id>prod</id>
            <properties>
                <profiles.active>prod</profiles.active>
            </properties>
        </profile>
        <profile>
            <!-- 本地开发环境 -->
            <id>dev</id>
            <properties>
                <profiles.active>dev</profiles.active>
            </properties>
            <activation>
                <activeByDefault>true</activeByDefault>
            </activation>
        </profile>
        <profile>
            <!-- 测试环境 -->
            <id>test</id>
            <properties>
                <profiles.active>test</profiles.active>
            </properties>
        </profile>
    </profiles>

默认dev配置

1、配置多个配置文件

application.properties文件配置

注意这里的profiles.active 要和pom文件的对应上

spring.profiles.active=@profiles.active@

application-dev.properties文件配置

name = "dev"

application-prod.properties文件配置

name = "prod"

application-test.properties文件配置

name = "test"

2、编写个测试的controller

@RestController
public class HelloController {
 
    @Value("${name}")
    private String name;
 
    @RequestMapping(value = {"/hello"},method = RequestMethod.GET)
    public String say(){
        return name;
    }

 

3、启动测试

使用idea工具启动开发:

 默认是dev,假如想要使用prod配置文件,如上图选择prod,注意下面的导入,重启项目

D:\dev_code\profiles-demo\target>curl http://localhost:8080/hello
"prod"

4、打包

这里使用idea打包也可以使用命令行打包。

如果你使用命令

mvn clean package -P dev

则是使用dev配置

 

posted @ 2024-09-23 17:33  苹果芒  阅读(85)  评论(0编辑  收藏  举报