美文网首页
[Java] SpringBoot yml 环境配置

[Java] SpringBoot yml 环境配置

作者: 巨馍蘸酱 | 来源:发表于2023-03-02 17:56 被阅读0次

单个 yml 文件

#默认配置
server:
  port: 8080
#切换配置
spring:
  profiles:
    active: dev
---
#开发环境
server:
  port: 8081
spring:
  config:
    activate:
      on-profile: dev
---
#测试环境
server:
  port: 8082
spring:
  config:
    activate:
      on-profile: test
---
#生产环境
server:
  port: 8083
spring:
  config:
    activate:
      on-profile: prod

多个 yml 文件

相关文章

网友评论

      本文标题:[Java] SpringBoot yml 环境配置

      本文链接:https://www.haomeiwen.com/subject/ujwjldtx.html