时间:2021-05-19
一、Spring Boot Admin简介
spring boot admin github开源地址:https://github.com/codecentric/spring-boot-admin
它主要的作用是在Spring Boot Actuator的基础上提供简洁的WEB UI展示。
二、项目使用:
1、搭建一个maven web项目
2、pom依赖配置
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> </dependency> <dependency> <groupId>de.codecentric</groupId> <artifactId>spring-boot-admin-starter-client</artifactId> </dependency> <dependency> <groupId>de.codecentric</groupId> <artifactId>spring-boot-admin-server</artifactId> </dependency> <dependency> <groupId>de.codecentric</groupId> <artifactId>spring-boot-admin-server-ui</artifactId> </dependency> <dependency> <groupId>de.codecentric</groupId> <artifactId>spring-boot-admin-server-ui-login</artifactId> </dependency>在pom.xml中添加上以上配置
admin服务端:spring-boot-admin-server、spring-boot-admin-server-ui
admin客户端:spring-boot-admin-starter-client (加上该项能监控服务端自身的运行状态,其他项目只需要引入client就可以引入监控)
安全:spring-boot-starter-security
登录验证:spring-boot-admin-server-ui-login (也可以自行添加简单的登录界面)
3、application.yml
info: app: name: imard version: v1.0.0 [html] view plain copylogging: file: "d:/logs/imard/boot.log" management: context-path: "/actuator" spring: application: name: "@pom.artifactId@" boot: admin: url: http://:8080/login.html监控登录界面进行安全验证后,如下图:进入details就可以看到具体的项目监控信息(Details、Log、Metrics、Environment、Logging、JMX、Threads、Audit、Trace、Heapdump)
总结
以上所述是小编给大家介绍的spring boot 添加admin监控的方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
一、使用mybatis-spring-boot-starter1、添加依赖org.mybatis.spring.bootmybatis-spring-boot-
一.介绍GitHub:https://github.com/codecentric/spring-boot-admin官方文档:http://codecentr
前言spring-boot-actuator是一个spring-boot提供的用于监控组件,只需要在代码中加入依赖就可以了org.springframework
gradle添加引用compile'org.springframework.boot:spring-boot-starter-amqp'testCompile'
概述SpringBoot监控核心是spring-boot-starter-actuator依赖,增加依赖后,SpringBoot会默认配置一些通用的监控,比如j