我是靠谱客的博主 靓丽鞋垫,最近开发中收集的这篇文章主要介绍Springboot admin 微服务监控,宕机邮件提醒,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1.服务端依赖

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-mail</artifactId>
</dependency>

2.登录邮箱->设置->账户->开启IMAP/SMTP服务(去百度)

3.配置yml文件

spring:
  security:
    user:
      name: admin
      password: admin
  boot:
    admin:
      ui:
        title: 服务状态监控
      notify:
        mail:
          enabled: true
          from: xxx@qq.com
          ignore-changes:
          to: xxxx@qq.com
  mail:
    host: smtp.qq.com
    protocol: smtps   #465端口需设置为smtps
    port: 465
    username: xxx@qq.com
    password: btyncctnyckoecdf
    properties:
      mail:
        smtp:
          auth: true
          ssl:
            enable: true
          starttls:
            enable: true
            required: true

4.启动项目,邮箱查询

 

最后

以上就是靓丽鞋垫为你收集整理的Springboot admin 微服务监控,宕机邮件提醒的全部内容,希望文章能够帮你解决Springboot admin 微服务监控,宕机邮件提醒所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(67)

评论列表共有 0 条评论

立即
投稿
返回
顶部