【SpringBoot学习笔记七】Profile多环境支持
程序员文章站
2022-03-02 22:29:56
...
1.多Profile文件
我们在主配置文件编写的时候,文件名可以是application-{profile}.properties/yml
默认使用appliction.properties的配置;
2.yml支持多文档块方式
protserver:
prot: 8081
spring:
profiles:
active: dev
---
server:
port:8083
spring:
profiles: dev
---
server:
port:8084
spring:
profiles: prod
3.**指定profile
1.在配置文件中指定
spring.profiles.active=dev
2.命令行(略)
3.虚拟机参数(略)
上一篇: scrapy
推荐阅读
-
springboot笔记05——profile多环境配置切换
-
学习笔记springBoot——配置profile多环境方法
-
Spring Boot学习笔记(3)——加载指定配置文件&Profile多环境支持
-
跟我学springboot(十一)springboot配置profile多环境支持
-
【SpringBoot】SpringBoot配置Profile多环境支持
-
SpringBoot配置Profile多环境支持
-
SpringBoot开发【配置】Profile多环境支持
-
springboot笔记05——profile多环境配置切换
-
SpringBoot配置Profile多环境支持
-
【SpringBoot学习笔记七】Profile多环境支持