spring_reference/IX. ‘How-to’ guides/63.5. Set the active Spring...

988 B
Raw Blame History

63.5. 设置生效的Spring profiles

Spring Environment有一个API可以设置生效的profiles但通常你会设置一个系统profilespring.profiles.active或一个OS环境变量SPRING_PROFILES_ACTIVE)。比如,使用一个-D参数启动应用程序记着把它放到main类或jar文件之前

$ java -jar -Dspring.profiles.active=production demo-0.0.1-SNAPSHOT.jar

在Spring Boot中你也可以在application.properties里设置生效的profile例如

spring.profiles.active=production

通过这种方式设置的值会被系统属性或环境变量替换,但不会被SpringApplicationBuilder.profiles()方法替换。因此后面的Java API可用来在不改变默认设置的情况下增加profiles。

想要获取更多信息可查看'Spring Boot特性'章节的Chapter 24, Profiles