spring boot 启用 actuator
Posted 小小程序员的梦想
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot 启用 actuator相关的知识,希望对你有一定的参考价值。
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-config-server</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-eureka</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.tmatesoft.svnkit</groupId>
<artifactId>svnkit</artifactId>
<version>1.8.14</version>
</dependency>
</dependencies>
一定要记得依赖spring-boot-starter-web包。我就是之前没有加载这个包导致监控查看的页面一直木有
http://127.0.0.1:8081/health
{ description: "Spring Cloud Eureka Discovery Client", status: "UP" }
http://127.0.0.1:8081/info
{}
以上是关于spring boot 启用 actuator的主要内容,如果未能解决你的问题,请参考以下文章
如何启用Spring Boot Actuator的所有Endpoints
如何启用Spring Boot Actuator的所有Endpoints
在 Spring Boot Actuator 中为 /health 端点启用 CORS