当前位置:   article > 正文

springboot整合actuator、admin对应用程序进行监控_actuator admin 获取不到后启动的应用

actuator admin 获取不到后启动的应用

目录

一、Spring Boot Actuator

1、整合Spring Boot Actuator

2、返回端口详情

3、暴露所有端点

二、整合Spring Boot Admin

1、搭建Spring Boot Admin Server

2、搭建Spring Boot Admin Client

3、整合Spring Security

登录失败问题

客户端注册失败问题

动态配置用户名/密码

4、服务下线邮箱提醒

5、整合nacos注册中心


一、Spring Boot Actuator

Spring Boot Actuator 是 Spring Boot 的一个子项目,可以对 Spring Boot 应用程序进行监控和管理,并对外提供了大量的端点,可以选择使用 HTTP 端点或 JMX 来管理和监控应用程序。

1、整合Spring Boot Actuator

通过IntelliJ IDEA创建一个名为springboot-actuator的springboot项目

修改pom.xml文件,将spring boot的版本修改为2.5.9。

  1. <parent>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-starter-parent</artifactId>
  4. <version>2.5.9</version>
  5. <relativePath />
  6. </parent>

在我们的springboot应用中整合actuator非常简单,只需要一个maven依赖:

  1. <dependency>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-starter-actuator</artifactId>
  4. </dependency>

完整的pom.xml

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.5.9</version>
  9. <relativePath />
  10. </parent>
  11. <groupId>cn.edu.sgu.www</groupId>
  12. <artifactId>springboot-actuator</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <properties>
  15. <java.version>1.8</java.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-web</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-actuator</artifactId>
  25. </dependency>
  26. </dependencies>
  27. <build>
  28. <plugins>
  29. <plugin>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-maven-plugin</artifactId>
  32. </plugin>
  33. </plugins>
  34. </build>
  35. </project>

最后设置一下启动端口,修改application.yml配置文件

  1. server:
  2. port: 8077

访问localhost:端口号/actuator,可以看到返回了很多个http链接地址,这些就是actuator默认提供给我们获取应用信息的端点。

http://localhost:8077/actuator/info用于获取应用的信息,这个端点默认返回空数据,这个是需要我们自己配置的。

http://localhost:8077/actuator/health用于获取服务的健康状态,如果服务依赖的所有中间件都是正常状态,这里会返回一个UP,表示在线状态。

2、返回端口详情

health端点默认只返回了一个状态,可以通过以下配置,让端点返回详细的信息。

  1. management:
  2. endpoint:
  3. health:
  4. show-details: always

重启项目,再次访问health端点:

3、暴露所有端点

上一步中,我们访问actuator只返回了两个端点:health和info,其实actuator提供的端点远不止这些,官网提供的jmx环境和web环境下各个端点的开放情况。

IDJMXWeb

auditevents

Yes

No

beans

Yes

No

caches

Yes

No

conditions

Yes

No

configprops

Yes

No

env

Yes

No

flyway

Yes

No

health

Yes

Yes

heapdump

N/A

No

httptrace

Yes

No

info

Yes

Yes

integrationgraph

Yes

No

jolokia

N/A

No

logfile

N/A

No

loggers

Yes

No

liquibase

Yes

No

metrics

Yes

No

mappings

Yes

No

prometheus

N/A

No

scheduledtasks

Yes

No

sessions

Yes

No

shutdown

Yes

No

threaddump

Yes

No

那么,其他端点怎么暴露出来呢,让我们访问http://localhost:8077/actuator就能得到所有可用端点。

修改application.yml,添加暴露所有端点的配置

  1. server:
  2. port: 8077
  3. management:
  4. endpoint:
  5. health:
  6. show-details: always # 显示健康状态详情
  7. endpoints:
  8. web:
  9. exposure:
  10. include: "*" # 暴露所有端点
  11. base-path: /actuator

这里的端点endpoint可以理解为Controller接口,通过端点可以获取应用的详细信息,包括实例健康状态、配置信息、映射信息、缓存信息等等。

关于具体每个端点的功能,就不一一介绍了,可以通过页面进行查看。

二、整合Spring Boot Admin

那么,actuator提供给我们那么多端点,不可能每次都通过这些端点来获取应用信息吧,太麻烦了,有没有一种更好的方式可以方便又快捷的查看应用程序的状态信息呢。

这个时候就需要引入Spring Boot Admin了

Spring Boot Admin是一个社区项目,用于管理和监控Spring Boot应用程序。

应用程序在我们的Spring Boot Admin Client(通过 HTTP)上注册,或使用Spring Cloud(如 Eureka、Consul)发现。

github可能访问缓慢或者无法访问,这里提供了gitee的仓库地址

Spring Boot Adminicon-default.png?t=N7T8https://gitee.com/pujiaolin/spring-boot-admin

1、搭建Spring Boot Admin Server

接下来开始整合Spring Boot Admin,根据官方文档的介绍,要先设置admin的服务器端,这是一个整合了spring-boot-admin-starter-server单独的服务。

通过idea创建一个Springboot项目,取名为springboot-admin-server

修改pom.xml,添加spring-boot-admin-starter-server的pom依赖 

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.3.4.RELEASE</version>
  9. <relativePath />
  10. </parent>
  11. <groupId>cn.edu.sgu.www</groupId>
  12. <artifactId>springboot-admin-server</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <properties>
  15. <java.version>1.8</java.version>
  16. <admin.version>2.3.1</admin.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-web</artifactId>
  22. </dependency>
  23. <!--admin server-->
  24. <dependency>
  25. <groupId>de.codecentric</groupId>
  26. <artifactId>spring-boot-admin-starter-server</artifactId>
  27. <version>${admin.version}</version>
  28. </dependency>
  29. </dependencies>
  30. <build>
  31. <plugins>
  32. <plugin>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-maven-plugin</artifactId>
  35. </plugin>
  36. </plugins>
  37. </build>
  38. </project>

在启动类上添加@EnableAdminServer注解

  1. package cn.edu.sgu.www.admin;
  2. import de.codecentric.boot.admin.server.config.EnableAdminServer;
  3. import org.springframework.boot.SpringApplication;
  4. import org.springframework.boot.autoconfigure.SpringBootApplication;
  5. @EnableAdminServer
  6. @SpringBootApplication
  7. public class AdminServer {
  8. public static void main(String[] args) {
  9. SpringApplication.run(AdminServer.class, args);
  10. }
  11. }

这样,admin的服务端就搭建好了,然后访问localhost:8080,看到的就是admin的界面。

2、搭建Spring Boot Admin Client

创建完服务器,需要往服务器注册客户端应用程序。

同样的,通过idea创建一个Springboot应用,取名为springboot-admin-client

修改pom.xml,添加admin客户端的依赖

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.3.4.RELEASE</version>
  9. <relativePath />
  10. </parent>
  11. <groupId>cn.edu.sgu.www</groupId>
  12. <artifactId>springboot-admin-client</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <properties>
  15. <java.version>1.8</java.version>
  16. <admin.version>2.3.1</admin.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-web</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>de.codecentric</groupId>
  25. <artifactId>spring-boot-admin-starter-client</artifactId>
  26. <version>${admin.version}</version>
  27. </dependency>
  28. </dependencies>
  29. <build>
  30. <plugins>
  31. <plugin>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-maven-plugin</artifactId>
  34. </plugin>
  35. </plugins>
  36. </build>
  37. </project>

然后修改配置文件application.yml,配置admin服务器的URL,并把第一章节的actuator配置复制过来。

admin-server没有配置端口,默认是8080

  1. server:
  2. port: 8081
  3. spring:
  4. application:
  5. name: admin-client
  6. boot:
  7. admin:
  8. client:
  9. url: http://localhost:8080
  10. management:
  11. endpoints:
  12. web:
  13. exposure:
  14. include: "*"
  15. base-path: /actuator
  16. endpoint:
  17. health:
  18. show-details: always

启动客户端服务springboot-admin-client,再次访问localhost:8080,可以看到,客户端已经注册到了服务器

3、整合Spring Security

通过上一步,我们已经搭建好了spring boot admin的全部服务了,但是存在很严重的安全问题,任何人都可以访问程序的运行状态和信息,这个章节通过整合Spring Security来解决这个问题,配置只有登录才能访问admin-client客户端程序的各种端点信息。

点击Spring Boot Admin官网左边的目录链接,直接跳转到Security

修改springboot-admin-server服务服务的pom.xml文件,添加spring security的依赖

  1. <dependency>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-starter-security</artifactId>
  4. </dependency>

pom.xml

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.3.4.RELEASE</version>
  9. <relativePath />
  10. </parent>
  11. <groupId>cn.edu.sgu.www</groupId>
  12. <artifactId>springboot-admin-server</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <properties>
  15. <java.version>1.8</java.version>
  16. <admin.version>2.3.1</admin.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-web</artifactId>
  22. </dependency>
  23. <!--admin server-->
  24. <dependency>
  25. <groupId>de.codecentric</groupId>
  26. <artifactId>spring-boot-admin-starter-server</artifactId>
  27. <version>${admin.version}</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-security</artifactId>
  32. </dependency>
  33. </dependencies>
  34. <build>
  35. <plugins>
  36. <plugin>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-maven-plugin</artifactId>
  39. </plugin>
  40. </plugins>
  41. </build>
  42. </project>

在admin-server端添加一个配置类,根据自己的喜好来修改第二个configure方法里的用户名和密码

  1. package cn.edu.sgu.www.admin.config;
  2. import de.codecentric.boot.admin.server.config.AdminServerProperties;
  3. import org.springframework.context.annotation.Configuration;
  4. import org.springframework.http.HttpMethod;
  5. import org.springframework.security.config.Customizer;
  6. import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
  7. import org.springframework.security.config.annotation.web.builders.HttpSecurity;
  8. import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
  9. import org.springframework.security.web.authentication.SavedRequestAwareAuthenticationSuccessHandler;
  10. import org.springframework.security.web.csrf.CookieCsrfTokenRepository;
  11. import org.springframework.security.web.util.matcher.AntPathRequestMatcher;
  12. import java.util.UUID;
  13. /**
  14. * @author heyunlin
  15. * @version 1.0
  16. */
  17. @Configuration(proxyBeanMethods = false)
  18. public class SecurityConfig extends WebSecurityConfigurerAdapter {
  19. private final AdminServerProperties adminServer;
  20. public SecurityConfig(AdminServerProperties adminServer) {
  21. this.adminServer = adminServer;
  22. }
  23. @Override
  24. protected void configure(HttpSecurity http) throws Exception {
  25. SavedRequestAwareAuthenticationSuccessHandler successHandler = new SavedRequestAwareAuthenticationSuccessHandler();
  26. successHandler.setTargetUrlParameter("redirectTo");
  27. successHandler.setDefaultTargetUrl(this.adminServer.path("/"));
  28. http.authorizeRequests(
  29. (authorizeRequests) -> authorizeRequests.antMatchers(this.adminServer.path("/assets/**")).permitAll()
  30. .antMatchers(this.adminServer.path("/login")).permitAll().anyRequest().authenticated()
  31. ).formLogin(
  32. (formLogin) -> formLogin.loginPage(this.adminServer.path("/login")).successHandler(successHandler).and()
  33. ).logout((logout) -> logout.logoutUrl(this.adminServer.path("/logout"))).httpBasic(Customizer.withDefaults())
  34. .csrf((csrf) -> csrf.csrfTokenRepository(CookieCsrfTokenRepository.withHttpOnlyFalse())
  35. .ignoringRequestMatchers(
  36. new AntPathRequestMatcher(this.adminServer.path("/instances"),
  37. HttpMethod.POST.toString()),
  38. new AntPathRequestMatcher(this.adminServer.path("/instances/*"),
  39. HttpMethod.DELETE.toString()),
  40. new AntPathRequestMatcher(this.adminServer.path("/actuator/**"))
  41. ))
  42. .rememberMe((rememberMe) -> rememberMe.key(UUID.randomUUID().toString()).tokenValiditySeconds(1209600));
  43. }
  44. // Required to provide UserDetailsService for "remember functionality"
  45. @Override
  46. protected void configure(AuthenticationManagerBuilder auth) throws Exception {
  47. auth.inMemoryAuthentication().withUser("user").password("12345").roles("USER");
  48. }
  49. }

登录失败问题

然后重启springboot-admin-server服务,再次访问localhost:8080的时候,发现要登录

输入刚刚设置的用户名/密码:user/12345,点击登录按钮,这时候发现页面只是刷新了一下,并没有跳转到首页,这里也是个坑。

查看服务端报错信息

点第一行或者第二行的matches()方法进去看看

很显然,就是因为这里主动抛出的异常导致的登录失败,往鼠标上面滚动,这是一个PasswordEncoder的实现类

由此可见,这是默认调用的这个实现类的matches()方法,为了解决这个异常问题,我们需要在admin-server自己创建一个org.springframework.security.crypto.password.PasswordEncoder的实现类,并声明为bean,然后重写matches()方法,直接通过equals()比较即可。

  1. package cn.edu.sgu.www.admin.encoder;
  2. import org.springframework.security.crypto.password.PasswordEncoder;
  3. import org.springframework.stereotype.Component;
  4. /**
  5. * @author heyunlin
  6. * @version 1.0
  7. */
  8. @Component
  9. public class MyPasswordEncoder implements PasswordEncoder {
  10. @Override
  11. public String encode(CharSequence rawPassword) {
  12. return null;
  13. }
  14. @Override
  15. public boolean matches(CharSequence rawPassword, String encodedPassword) {
  16. return rawPassword.equals(encodedPassword);
  17. }
  18. }

客户端注册失败问题

然后再次重启springboot-admin-server服务,这一次输入user/12345点击登录,成功进到了首页,但是,客户端怎么没了,居然没有注册进来。

接着看文档,后面还有很关键的说明,需要在客户端添加下面这个配置,用户名密码就是刚刚设置的用户名user和密码12345。

修改springboot-admin-client服务的application.yml,添加用户名和密码的配置,重启一下。

  1. server:
  2. port: 8081
  3. spring:
  4. application:
  5. name: admin-client
  6. boot:
  7. admin:
  8. client:
  9. username: user
  10. password: 12345
  11. url: http://localhost:8080
  12. management:
  13. endpoints:
  14. web:
  15. exposure:
  16. include: "*"
  17. base-path: /actuator
  18. endpoint:
  19. health:
  20. show-details: always

刷新admin-server的页面,这时候发现admin-client终于成功注册进来了

动态配置用户名/密码

最后,因为springboot-admin-server的用户名、密码都是写死在代码里的,一般希望能过通过配置文件动态修改。

修改springboot-admin-server服务的pom.xml文件,在配置文件中配置用户名和密码

  1. server:
  2. port: 8080
  3. spring:
  4. application:
  5. name: admin-server
  6. security:
  7. user:
  8. name: user
  9. password: 12345

修改一下配置类,从配置中读取用户名和密码

  1. package cn.edu.sgu.www.admin.config;
  2. import de.codecentric.boot.admin.server.config.AdminServerProperties;
  3. import org.springframework.boot.autoconfigure.security.SecurityProperties;
  4. import org.springframework.context.annotation.Configuration;
  5. import org.springframework.http.HttpMethod;
  6. import org.springframework.security.config.Customizer;
  7. import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
  8. import org.springframework.security.config.annotation.web.builders.HttpSecurity;
  9. import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
  10. import org.springframework.security.web.authentication.SavedRequestAwareAuthenticationSuccessHandler;
  11. import org.springframework.security.web.csrf.CookieCsrfTokenRepository;
  12. import org.springframework.security.web.util.matcher.AntPathRequestMatcher;
  13. import java.util.UUID;
  14. /**
  15. * @author heyunlin
  16. * @version 1.0
  17. */
  18. @Configuration(proxyBeanMethods = false)
  19. public class SecurityConfig extends WebSecurityConfigurerAdapter {
  20. private final SecurityProperties securityProperties;
  21. private final AdminServerProperties adminServerProperties;
  22. public SecurityConfig(SecurityProperties securityProperties, AdminServerProperties adminServerProperties) {
  23. this.securityProperties = securityProperties;
  24. this.adminServerProperties = adminServerProperties;
  25. }
  26. @Override
  27. protected void configure(HttpSecurity http) throws Exception {
  28. SavedRequestAwareAuthenticationSuccessHandler successHandler = new SavedRequestAwareAuthenticationSuccessHandler();
  29. successHandler.setTargetUrlParameter("redirectTo");
  30. successHandler.setDefaultTargetUrl(this.adminServerProperties.path("/"));
  31. http.authorizeRequests(
  32. (authorizeRequests) -> authorizeRequests.antMatchers(this.adminServerProperties.path("/assets/**")).permitAll()
  33. .antMatchers(this.adminServerProperties.path("/login")).permitAll().anyRequest().authenticated()
  34. ).formLogin(
  35. (formLogin) -> formLogin.loginPage(this.adminServerProperties.path("/login")).successHandler(successHandler).and()
  36. ).logout((logout) -> logout.logoutUrl(this.adminServerProperties.path("/logout"))).httpBasic(Customizer.withDefaults())
  37. .csrf((csrf) -> csrf.csrfTokenRepository(CookieCsrfTokenRepository.withHttpOnlyFalse())
  38. .ignoringRequestMatchers(
  39. new AntPathRequestMatcher(this.adminServerProperties.path("/instances"),
  40. HttpMethod.POST.toString()),
  41. new AntPathRequestMatcher(this.adminServerProperties.path("/instances/*"),
  42. HttpMethod.DELETE.toString()),
  43. new AntPathRequestMatcher(this.adminServerProperties.path("/actuator/**"))
  44. )
  45. ).rememberMe((rememberMe) -> rememberMe.key(UUID.randomUUID().toString()).tokenValiditySeconds(1209600));
  46. }
  47. @Override
  48. protected void configure(AuthenticationManagerBuilder auth) throws Exception {
  49. auth.inMemoryAuthentication().withUser(securityProperties.getUser().getName())
  50. .password(securityProperties.getUser().getPassword()).roles("USER");
  51. }
  52. }

4、服务下线邮箱提醒

作为应用监控的工具,spring boot admin提供了在服务由于异常原因而掉线/宕机触发邮件提醒功能。

第一步:在admin-server端添加邮件发送工具的依赖

  1. <dependency>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-starter-mail</artifactId>
  4. </dependency>

pom.xml

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.3.4.RELEASE</version>
  9. <relativePath />
  10. </parent>
  11. <groupId>cn.edu.sgu.www</groupId>
  12. <artifactId>springboot-admin-server</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <properties>
  15. <java.version>1.8</java.version>
  16. <admin.version>2.3.1</admin.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-web</artifactId>
  22. </dependency>
  23. <!--admin server-->
  24. <dependency>
  25. <groupId>de.codecentric</groupId>
  26. <artifactId>spring-boot-admin-starter-server</artifactId>
  27. <version>${admin.version}</version>
  28. </dependency>
  29. <!--邮件发送服务-->
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-mail</artifactId>
  33. </dependency>
  34. <!--spring security-->
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-security</artifactId>
  38. </dependency>
  39. </dependencies>
  40. <build>
  41. <plugins>
  42. <plugin>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-maven-plugin</artifactId>
  45. </plugin>
  46. </plugins>
  47. </build>
  48. </project>

第二步:配置邮箱

这里的发送邮箱需要开启smtp服务,具体操作可以参考博主的文章java实现一个简单的账号登录时的邮件通知功能icon-default.png?t=N7T8https://blog.csdn.net/heyl163_/article/details/132962539springboot-admin-server服务的application.yml

  1. server:
  2. port: 8080
  3. spring:
  4. application:
  5. name: admin-server
  6. security:
  7. user:
  8. name: user
  9. password: 12345
  10. boot:
  11. admin:
  12. notify:
  13. mail:
  14. from: xxxxx@xxx.com # 发送邮箱
  15. to: xxxxx@xxx.com # 接收邮箱
  16. mail:
  17. port: 25
  18. host: smtp.163.com # 邮箱对应的发送服务器,如@163.com邮箱的发送服务器为smtp.163.com
  19. default-encoding: UTF-8
  20. username: xxxxx@xxx.com # 开启smtp服务的邮箱
  21. password: xxxxxxxxxxxxx # 授权码
  22. properties:
  23. mail:
  24. debug: false
  25. smtp:
  26. auth: true
  27. ssl:
  28. trust: smtp.163.com
  29. starttls:
  30. enable: true
  31. required: true
  32. socketFactory:
  33. port: 465
  34. class: javax.net.ssl.SSLSocketFactory

至此,邮箱提醒设置完成~(下图为博主尝试主动关闭admin-client触发的邮箱提醒功能)

5、整合nacos注册中心

以springboot-admin-server为例,将其注册到nacos。

添加nacos相关依赖,注册中心和配置中心的依赖都加进来,统一管理配置信息。

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.3.4.RELEASE</version>
  9. <relativePath />
  10. </parent>
  11. <groupId>cn.edu.sgu.www</groupId>
  12. <artifactId>springboot-admin-server</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <properties>
  15. <java.version>1.8</java.version>
  16. <admin.version>2.3.1</admin.version>
  17. <nacos.version>2.2.0.RELEASE</nacos.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. </dependency>
  24. <!--admin server-->
  25. <dependency>
  26. <groupId>de.codecentric</groupId>
  27. <artifactId>spring-boot-admin-starter-server</artifactId>
  28. <version>${admin.version}</version>
  29. </dependency>
  30. <!--邮件发送服务-->
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-mail</artifactId>
  34. </dependency>
  35. <!--spring security-->
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-security</artifactId>
  39. </dependency>
  40. <!--nacos注册中心-->
  41. <dependency>
  42. <groupId>com.alibaba.cloud</groupId>
  43. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  44. <version>${nacos.version}</version>
  45. </dependency>
  46. <!--nacos配置中心-->
  47. <dependency>
  48. <groupId>com.alibaba.cloud</groupId>
  49. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  50. <version>${nacos.version}</version>
  51. </dependency>
  52. </dependencies>
  53. <build>
  54. <plugins>
  55. <plugin>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-maven-plugin</artifactId>
  58. </plugin>
  59. </plugins>
  60. </build>
  61. </project>

然后创建bootstrap.yml,添加nacos注册中心和配置中心配置

  1. nacos:
  2. server: localhost:8848
  3. namespace: 0df4345c-cf1e-4af4-9501-d4be92ca6fda
  4. spring:
  5. cloud:
  6. nacos:
  7. discovery:
  8. register-enabled: true
  9. server-addr: ${nacos.server}
  10. namespace: ${nacos.namespace}
  11. config:
  12. file-extension: yaml
  13. server-addr: ${nacos.server}
  14. namespace: ${nacos.namespace}

注意:需要配置spring.application.name的值,否则服务不会注册到nacos

启动nacos服务,然后再启动springboot-admin-server,在nacos控制台的服务列表,成功看到了注册进来的的springboot-admin-server服务

接着,通过同样的步骤把admin-client注册到nacos。

admin-server和admin-client注册到nacos注册中心之后,会自动拉取添加了spring-boot-starter-admin-client依赖的服务,所以需要删除客户端配置,否则将会有两个同一服务的实例注册到admin服务器。

修改springboot-admin-client服务的配置文件application.yml,删除之前添加的admin客户端配置。

  1. server:
  2. port: 8081
  3. spring:
  4. application:
  5. name: admin-client
  6. # boot:
  7. # admin:
  8. # client:
  9. # username: user
  10. # password: 12345
  11. # url: http://localhost:8080
  12. management:
  13. endpoints:
  14. web:
  15. exposure:
  16. include: "*"
  17. base-path: /actuator
  18. endpoint:
  19. health:
  20. show-details: always

好了,以上就是本篇文章要分享的全部内容了,看完不要忘了点赞+收藏哦~

文章中涉及的项目均已上传到gitee,需要的可以下载到本地:

springboot整合actuator案例项目icon-default.png?t=N7T8https://gitee.com/he-yunlin/springboot-actuator.git

Spring Boot Admin Client案例项目icon-default.png?t=N7T8https://gitee.com/he-yunlin/springboot-admin-client.gitspring boot整合admin实现对应用监控服务器项目icon-default.png?t=N7T8https://gitee.com/he-yunlin/springboot-admin-server.git

 关于nacos如何使用,可以参考博主的另一篇文章:

nacos作为注册中心和配置中心icon-default.png?t=N7T8https://blog.csdn.net/heyl163_/article/details/128536799

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/856572
推荐阅读
相关标签
  

闽ICP备14008679号