改进spring boot添加监控
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了改进spring boot添加监控相关的知识,希望对你有一定的参考价值。
服务器端
- 在启动类上添加
@EnableAdminServer
@SpringBootApplication
- 在pom.xml上添加
<dependency>
<groupId>de.codecentric</groupId>
<artifactId>spring-boot-admin-server</artifactId>
<version>1.5.7</version>
</dependency>
<dependency>
<groupId>de.codecentric</groupId>
<artifactId>spring-boot-admin-server-ui</artifactId>
<version>1.5.7</version>
</dependency>
客户端
- 在application.properties中添加
spring.boot.admin.url=http://localhost:8080
spring.application.name=spring-boot-admin-client
#禁用安全控制
management.security.enabled=false
2.在pom.xml
<dependency>
<groupId>de.codecentric</groupId>
<artifactId>spring-boot-admin-starter-client</artifactId>
<version>1.5.7</version>
</dependency>
以上是关于改进spring boot添加监控的主要内容,如果未能解决你的问题,请参考以下文章
spring boot rest webservice,如何改进干净的代码?
Spring boot:thymeleaf 没有正确渲染片段