spring boot2.4版本后对于多环境的配置

spring boot2.4版本后对于多环境的配置,第1张

2.4版本之前

---

spring:
  profiles: test
server:
  port: 8022
---

激活方式为

spring:
  profiles:
    active: test

2.4版本后

server:
  port: 8083
spring:
  config:
    activate:
      on-profile: "test"(双引号非必须)

激活方式为

spring:
  profiles:
    active: "test"

虚拟机参数配置(会覆盖配置文件中的配置)

-Dspring.profiles.active="test"

命令行的参数配置

--spring.profiles.active=“test”

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/789908.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-05
下一篇 2022-05-05

发表评论

登录后才能评论

评论列表(0条)

保存