pom.xml配置:加入 mail 的依赖
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-mail</artifactId> </dependency>application.yml:在配置文件中配置收件人以及发件方信息,并且开启邮箱提醒
spring: boot: admin: notify: mail: enabled: true from: youemail@example.com ... spring.mail.host: smtp.example.com spring.mail.username: youemail@example.com spring.mail.password: # 授权码 spring.boot.admin.notify.mail.to: admin@example.com配置并启动完成后,可以尝试将 Client 项目中止:
然后打开收件方的邮箱,就可以看见 SBA 发送的邮件了
五、参考SBA 官方文档:https://codecentric.github.io/spring-boot-admin/current/