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
下一篇: scrapy
推荐阅读
-
Spring Boot学习笔记(3)——加载指定配置文件&Profile多环境支持
-
Spring Boot(7)配置篇 - Profile多环境支持
-
跟我学springboot(十一)springboot配置profile多环境支持
-
【SpringBoot】SpringBoot配置Profile多环境支持
-
SpringBoot配置Profile多环境支持
-
SpringBoot开发【配置】Profile多环境支持
-
SpringBoot配置Profile多环境支持
-
springboot配置profile多环境支持
-
五、SpringBoot_配置-Profile多环境支持
-
16、尚硅谷_SpringBoot_配置-Profile多环境支持