我想我的默认活动的配置文件是production,如果-Dspring.profiles.active没有设置。
production
-Dspring.profiles.active
我尝试了以下方法,application.properties但是没有用:
application.properties
spring.profiles.default=production
Spring Boot版本= 1.3.5.RELEASE
您在这里所做的是将默认 默认 概要文件(如果未指定@Profile注释,则在任何bean上使用的概要文件)设置为production。
@Profile
您实际需要做的是设置默认的 活动 配置文件,如下所示:
spring.profiles.active=production