springBoot运维监控(spring-boot-starter-actuator)及浏览器查看(spring-boot-starter-hateoas) - qq360452913的博客 - CSDN博客

1,首先,引入相关的依赖,最好和spring-boot-starter-parent的版本保持一致

监控:

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
以json格式输出信息:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-hateoas</artifactId>
<version>2.1.2.RELEASE</version>
</dependency>

浏览器访问:localhost:8080/actuator

查看其它信息:比如health 直接点击对应的请求地址http://localhost:8080/actuator/health 

以上是配置了监控查看所有的信息,配置如下,可根据需要自己修改

中间遇到的坑:访问localhost:8080/actuator报404错误,其它到controller的请求能够正常映射,原因:jar包出现问题,作用域是actuator的scope是test

解决方式;去掉scope 

以上!


Original url: Access
Created at: 2019-10-31 13:13:44
Category: default
Tags: none

请先后发表评论
  • 最新评论
  • 总共0条评论