springboot配置health接口
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot配置health接口相关的知识,希望对你有一定的参考价值。
参考技术A 1,引入actuator<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
2,application.properties 配置
management.endpoint.health.show-details=always
但是访问必须加上actuator,不知为什么
http://localhost:8180/actuator/health
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
---
以上是关于springboot配置health接口的主要内容,如果未能解决你的问题,请参考以下文章
Springboot yml配置参数加密 ,jasypt自定义解密器