springboot多环境区分

1.配置文件准备
springboot多环境区分_第1张图片
2.application.properties
spring.profiles.active = @profileActive@
3.pom.xml
dev
dev
test
test
pro
pro
 
src/main/resources
application*.properties
src/main/resources
true
application.properties
application-${profileActive}.properties
org.springframework.boot
spring-boot-maven-plugin
4.环境选择
  springboot多环境区分_第2张图片

转载于:https://www.cnblogs.com/taohaijun/p/11040242.html

你可能感兴趣的:(springboot多环境区分)