SpringBoot(一)【入门】(2)https://developer.aliyun.com/article/1534227
2.2.3、多环境启动命令格式
在实际开发过程中,我们的程序打包后总是有一个我们指定的环境(比如我们这里的yml文件:spirng.profiles.active: dev)
打包程序(先设置编码格式,防止 SpringBoot 中的配置文件中文乱码,即使是中文注释):
如果打包后的 jar 包只有几 KB,那指定是打包出问题了,看看 pom.xml 中的这里:
测试结果:
普通启动:
我们看到,启动的端口是 85,我们现在指定环境为 test:
java -jar springboot-demo1-0.0.1-SNAPSHOT.jar --spring.profiles.active=test
可以看到,端口被切换为 87
2.2.4、多环境开发兼容性问题
在 SpringBoot 和 Maven 都有 profile 配置的情况下,SpringBoot 的配置应该听从于 Maven ,也就是说 Maven 应该占据主导地位。
Maven 中设置多环境属性
<profiles> <!-- 开发环境 --> <profile> <id>dev</id> <properties> <profile.active>dev</profile.active> </properties> </profile> <!-- 生产环境 --> <profile> <id>pro</id> <properties> <profile.active>pro</profile.active> </properties> <activation> <activeByDefault>true</activeByDefault> </activation> </profile> <!-- 测试环境 --> <profile> <id>test</id> <properties> <profile.active>test</profile.active> </properties> </profile> </profiles>
SpringBoot 中引用 Maven 属性
spring: profiles: active: ${profile.active}
对资源文件开启默认占位符的解析
这里需要引入一个插件来将我们 Maven 中配置的<profile.active>属性值加载到 application.yml 中的占位符 ${profile.active} 当中:
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>3.2.0</version> <configuration> <encoding>UTF-8</encoding> <useDefaultDelimiters>true</useDefaultDelimiters> </configuration> </plugin>
未导入插件前:
导入插件后,我们解压打包好的 jar 包后就会发现Maven中的属性值被成功加载到 application.yml:
2.3、配置文件分类
- SpringBoot 中4级配置文件等级(从高到低)
- 1级:config/application.yml(jar包所在目录下的config目录)
- 2级:application.yml(jar包所在目录)
- 3级:classpath: config/application.yml(jar包内的路径/Maven工程的resources目录下的config目录)
- 4级:classpath: application.yml(jar包内的路径/Maven工程的resources目录)
所以,如果我们测试的时候希望修改某个配置属性,可以通过前两种方式对属性进行覆盖。
编辑一个 application.yml:
server: port: 88
放到 jar 包所在目录
测试:
可以看到,jar 包内的配置端口=85 被覆盖掉了。