1. 程式人生 > >spring boot 新增admin監控

spring boot 新增admin監控

一、Spring Boot  Admin簡介

spring boot admin github開源地址:https://github.com/codecentric/spring-boot-admin

它主要的作用是在Spring Boot Actuator的基礎上提供簡潔的WEB UI展示。

二、專案使用:

1、搭建一個maven web專案

2、pom依賴配置

  1. <dependency>  
  2.     <groupId>org.springframework.boot</groupId>  
  3.     <artifactId>spring-boot-starter-web</artifactId>  
  4. </dependency>  
  5. <dependency>  
  6.     <groupId>org.springframework.boot</groupId>  
  7.     <artifactId>spring-boot-starter-security</artifactId>  
  8. </dependency>  
  9. <dependency>  
  10.     <groupId>de.codecentric</groupId>  
  11.     <artifactId>spring-boot-admin-starter-client</artifactId>  
  12. </dependency>  
  13. <dependency>  
  14.     <groupId>de.codecentric</groupId>  
  15.     <artifactId>spring-boot-admin-server</artifactId>  
  16. </dependency>  
  17. <dependency>  
  18.     <groupId>de.codecentric</groupId>  
  19.     <artifactId>spring-boot-admin-server-ui</artifactId>  
  20. </dependency>  
  21. <dependency>  
  22.     <groupId>de.codecentric</groupId>  
  23.     <artifactId>spring-boot-admin-server-ui-login</artifactId>  
  24. </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

  1. info:  
  2.   app:  
  3.     name: imard  
  4.     version: v1.0.0  
  1. logging:  
  2.   file: "d:/logs/imard/boot.log"  
  3. management:  
  4.   context-path: "/actuator"  
  5. spring:  
  6.   application:  
  7.     name: "@[email protected]"  
  8.   boot:  
  9.     admin:  
  10.       url: http://www.test.com:8080  
  11.   profiles:  
  12.     active:  
  13.       - secure  
  14. ---  
  15. spring:  
  16.   profiles: insecure  
  17. management:  
  18.   security:  
  19.     enabled: false  
  20. security:  
  21.   basic:  
  22.     enabled: false  
  23. ---  
  24. spring:  
  25.   profiles: secure  
  26.   boot:  
  27.     admin:  
  28.       username: "${security.user.name}"  
  29.       password: "${security.user.password}"  
  30.       client:  
  31.         metadata:  
  32.           user.name: "${security.user.name}"  
  33.           user.password:  "${security.user.password}"  
  34. security:  
  35.   user:  
  36.     name: user  
  37.     password: pass  
其中:spring.boot.admin.url宣告admin服務端地址(其他專案會通過這個url主動的註冊到admin監控中)

            info配置app的基本資訊

            www.test.com  在本機hosts中做了對映

4、Application.java

  1. @Configuration
  2. @EnableAutoConfiguration
  3. @EnableAdminServer
  4. publicclass Application extends SpringBootServletInitializer {  
  5.     @Override
  6.     protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {  
  7.         return application.sources(Application.class);  
  8.     }  
  9.     publicstaticvoid main(String[] args) {  
  10.         SpringApplication.run(Application.class, args);  
  11.     }  
  12. }  

@EnableAdminServer 新增上該註解啟動監控

5、SecurityConfig

  1. @Profile("secure")  
  2. @Configuration
  3. publicclass SecurityConfig extends WebSecurityConfigurerAdapter {  
  4.     @Override
  5.     protectedvoid configure(HttpSecurity http) throws Exception {  
  6.         http.formLogin().loginPage("/login.html").loginProcessingUrl("/login").permitAll();  
  7.         http.logout().logoutUrl("/logout");  
  8.         http.csrf().disable();  
  9.         http.authorizeRequests()  
  10.             .antMatchers("/login.html""/**/*.css""/img/**""/third-party/**").permitAll();  
  11.         http.authorizeRequests().antMatchers("/api/**").permitAll().antMatchers("/**")  
  12.             .authenticated();  
  13.         // Enable so that the clients can authenticate via HTTP basic for registering
  14.         http.httpBasic();  
  15.     }  
  16. }  
使用Spring Security配置一個基本的安全策略

6、監管管理

配置完1~5個步驟以後,使用application啟動監控程式。

通過http://www.test.com:8080/login.html監控登入介面進行安全驗證後,如下圖:


進入details就可以看到具體的專案監控資訊(Details、Log、Metrics、Environment、Logging、JMX、Threads、Audit、Trace、Heapdump)