1.yml文件(旧)
说明:旧的写法。
#应用环境
spring:
profiles:
active: dev
---
#设置环境
#生产环境
spring:
profiles: pro
server:
port: 81
---
#开发环境
spirng:
profiles: dev
server:
port: 81
---
#测试环境
spring:
profiles: test
server:
port: 82
2.yml文件(新)
说明:以下是最新配置。
#应用环境
spring:
profiles:
active: test
---
#设置环境
#生产环境
spring:
config:
activate:
on-profile: pro
server:
port: 81
---
#开发环境
spring:
config:
activate:
on-profile: dev
server:
port: 81
---
#测试环境
spring:
config:
activate:
on-profile: test
server:
port: 82
3.文件区别
说明:可以创建不同的文件进行区分开发环境、测试环境、生产环境。在application.yml主文件配置。
spring:
profiles:
active: test
4.properties文件说明
5. 技巧
文章来源:https://www.toymoban.com/news/detail-744061.html
文章来源地址https://www.toymoban.com/news/detail-744061.html
到了这里,关于SpringBoot项目多环境开发的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!