在Spring-boot中设置默认的活动配置文件

12 浏览
0 Comments

在Spring-boot中设置默认的活动配置文件

如果没有设置-Dspring.profiles.active,我想我的默认活动配置文件为production

我在application.properties中尝试了以下操作,但它没有起作用:

spring.profiles.default=production

Spring Boot版本= 1.3.5.RELEASE

admin 更改状态以发布 2023年5月25日
0
0 Comments

添加 --spring.profiles.active=production

示例:

java -jar file.jar --spring.profiles.active=production

0
0 Comments

你正在做的是设置默认的默认配置文件(如果你没有指定@Profile注释,在任何bean上使用的配置文件)为production

你实际需要做的是设置默认的活动配置文件,操作如下:

spring.profiles.active=production

0