解决:spring.profiles.active=dev 多实例不生效问题

目录

    • 问题
        • spring boot 2.x 运行指定配置(application-dev2.yml)文件,没有生效
    • 解决
        • spring-boot 2.x 使用mvn spring-boot:run -Dspring-boot.run.profiles=XXX
    • 效果
    • 解决问题依据
    • 多实例配置过程
        • pom.xml

问题

spring boot 2.x 运行指定配置(application-dev2.yml)文件,没有生效
mvn spring-boot:run -Pdev2

解决

spring-boot 2.x 使用mvn spring-boot:run -Dspring-boot.run.profiles=XXX
mvn spring-boot:run -Dspring-boot.run.profiles=dev2

或者线上发布

java -jar -Dspring.profiles.active=dev2 demo-0.0.1-SNAPSHOT.jar

效果

  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::        (v2.2.6.RELEASE)

2020-05-03 - [ main] d.s.d.DomeApplication  : The following profiles are active: dev2

解决问题依据

https://docs.spring.io/spring-boot/docs/2.0.1.RELEASE/maven-plugin/examples/run-profiles.html
解决:spring.profiles.active=dev 多实例不生效问题_第1张图片

多实例配置过程

解决:spring.profiles.active=dev 多实例不生效问题_第2张图片

pom.xml
    <profiles>
        <profile>
            <id>dev1</id>
            <properties>
                <spring.profiles.active>dev1</spring.profiles.active>
            </properties>
        </profile>
        <profile>
            <id>dev2</id>
            <properties>
                <spring.profiles.active>dev2</spring.profiles.active>
            </properties>
        </profile>
    </profiles>

你可能感兴趣的:(spring,boot,spring,boot,java,spring)