作者:老屋时光_503 | 来源:互联网 | 2023-10-13 11:25
篇首语:本文由编程笔记#小编为大家整理,主要介绍了springboot yaml 配置管理相关的知识,希望对你有一定的参考价值。
#所有环境公用的配置属性
management:
endpoint:
health:
show-details: always
endpoints:
web:
exposure:
include: ‘*‘
info:
app-name: pay
author: xiaofeiyang
email: 469821953@qq.com
spring:
profiles:
active: prod
#连字符
---
# profile=x的专用属性,也就是某个环境下的专用属性
#开发环境
spring:
profiles: dev
---
# profile=y的专用属性,也就是某个环境下的专用属性
#生产环境
spring:
profiles: prod
server:
tomcat:
max-threads: 300
max-connections: 1000
---