SpringBoot 程序多环境配置文件
2020-02-20 本文已影响0人
刘杰克
通常SpringBoot 一般会有多个环境的配置文件
application.properties
application-test.properties
application-dev.properties
application-release.properties
可通过application.properties中的spring.profiles.active设置配置文件
# 激活开发环境所需配置文件
spring.profiles.active=dev
此时,SpringBoot程序的环境即为开发环境的配置