通常SpringBoot 一般会有多个环境的配置文件
application.properties
application-test.properties
application-dev.properties
application-release.properties
可通过application.properties中的spring.profiles.active设置配置文件
# 激活开发环境所需配置文件
spring.profiles.active=dev
此时,SpringBoot程序的环境即为开发环境的配置
网友评论