springboot多环境配置

application.properties

spring.profiles.active=dev  #默认配置文件

application-dev.properties

#开发环境
server.port=8080

application-test.properties

#测试环境
server.port=8081

application-prod.properties

#生产环境
server.port=8082

中断target输入

java -jar springboot-profile-0.0.1-SNAPSHOT.jar --spring.profiles.active=prod

你可能感兴趣的:(springboot多环境配置)