1. 配置文件多环境配置
1.1 创建不同环境配置文件
文件名前缀和后缀为标准固定格式,不可以改变。
1.2 pom中加入文件配置
<profiles><profile><id>dev</id><properties><profile.name>dev</profile.name></properties></profile><profile><id>prod</id><properties><profile.name>prod</profile.name></properties></profile>
</profiles>
1.3 application.yml中动态配置
spring:profiles:active: @profile.name@