springBoot运维监控(spring-boot-starter-actuator)及浏览器查看(spring-boot-starter-hateoas)

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

监控:

 
   org.springframework.boot
   spring-boot-starter-actuator

以json格式输出信息:

   org.springframework.boot
   spring-boot-starter-hateoas
   2.1.2.RELEASE

浏览器访问:localhost:8080/actuator

springBoot运维监控(spring-boot-starter-actuator)及浏览器查看(spring-boot-starter-hateoas)_第1张图片

 

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

springBoot运维监控(spring-boot-starter-actuator)及浏览器查看(spring-boot-starter-hateoas)_第2张图片

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

springBoot运维监控(spring-boot-starter-actuator)及浏览器查看(spring-boot-starter-hateoas)_第3张图片

 

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

springBoot运维监控(spring-boot-starter-actuator)及浏览器查看(spring-boot-starter-hateoas)_第4张图片

解决方式;去掉scope 

以上!

你可能感兴趣的:(springBoot)