其他分享
首页 > 其他分享> > SpringBoot配置多环境配置文件

SpringBoot配置多环境配置文件

作者:互联网

SpringBoot配置多环境配置文件

单文件配置多个环境 (不推荐)

yml支持以多文档快的形式来区分环境,当然这块也是需要profiles来完成多文件配置,但是他不需要创建多个文件来区分了,直接以 三个横杠 来当做一个配置文件环境。

以下案例就是分为了两个环境,然后最上方active来指定对应的profiles环境

spring:
  profiles:
    active: prod

---
server:
  port: 8083
spring:
  profiles: dev

---

server:
  port: 8084
spring:
  profiles: prod

假如我们的springboot项目打的是jar包
java -jar spring-boot-02-config-0.0.1-SNAPSHOT.jar --spring.profiles.active=dev;

我们也可以通过这个命令行的形式来指定环境。

多文件配置多个环境(推荐使用)

标签:SpringBoot,配置文件,spring,配置,环境,profiles,application,yml
来源: https://www.cnblogs.com/cuianbing/p/16251441.html