我使用的是Spring boot admin&尝试在服务停止时收到邮件通知,并在移动电话上发送其他通知。 我尝试了一些东西,但它没有用。我该怎么做?
答案 0 :(得分:2)
您只需将JavaMailSender添加到SBA服务器即可。最简单的方法是使用Spring Boot的邮件启动程序和自动配置,因此您只需要这两个步骤:
(请配置正确的smtp-server和邮件接收者(可能需要凭据)!)
的pom.xml:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-mail</artifactId>
</dependency>
application.properties:
spring.mail.host=smtp.example.com
spring.boot.admin.notify.mail.to=admin@example.com
P.S。这只是从这里的文档中获取的:http://codecentric.github.io/spring-boot-admin/1.4.6/#mail-notifications
p.p.s对于移动设备的推送消息没有通知程序实现,如果您在我们的GitHub项目中编写了一个我感兴趣的PR。