五、SpringBoot_配置-Profile多环境支持
程序员文章站
2022-03-02 22:29:08
...
1、多Profile文件
我们在主配置文件编写的时候,文件名可以是 application-{profile}.properties/yml
默认使用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、在配置文件中指定 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
推荐阅读
-
基于webpack实现多html页面开发框架五 开发环境配置 babel配置
-
基于webpack实现多html页面开发框架五 开发环境配置 babel配置
-
springboot笔记05——profile多环境配置切换
-
springboot利用profile配置文件进行多环境切换
-
学习笔记springBoot——配置profile多环境方法
-
Spring Boot学习笔记(3)——加载指定配置文件&Profile多环境支持
-
非maven springboot配置多环境profile
-
Spring Boot(7)配置篇 - Profile多环境支持
-
Spring Boot入门(八) 之Profile多环境支持
-
SpringBoot 结合profile配置多环境