欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

16、尚硅谷_SpringBoot_配置-Profile多环境支持

程序员文章站 2022-03-02 22:29:14
...

Profile是Spring对不同环境提供不同配置功能的支持,可以通过**、指定参数等方式快速切换环境【生产、测试】

1、多profile文件格式:

-格式: application -{profile}.properties:
application-dev.properties
application-prod.properties

默认使用application.properties的配置;

2、yml支持多文档块方式

server:
  port: 8081
spring:
  profiles:
    active: prod

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


---

server:
  port: 8084
spring:
  profiles: prod  #指定属于哪个环境

3、**指定profile

​ 1、在默认配置文件【application.properties】中指定
spring.profiles.active=dev

​ 2、命令行:

​ java -jar spring-boot-02-config-0.0.1-SNAPSHOT.jar --spring.profiles.active=dev;

​ 可以直接在测试的时候,配置传入命令行参数

​ 3、虚拟机参数;

​ -Dspring.profiles.active=dev