热门标签 | HotTags
当前位置:  开发笔记 > 运维 > 正文

SpringBootAdmin邮件警报整合过程解析

这篇文章主要介绍了SpringBootAdmin邮件警报整合过程解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下

一、前言

  在Spring Boot Admin Server 中撒送预警邮件通知是很简单的,只需要简单的几个配置就可以了。

二、代码演示

1、microservice-monitor-server-> pom.xml

<&#63;xml version="1.0" encoding="UTF-8"&#63;>

  
    microservice-minitor
    com.microservice
    1.0-SNAPSHOT
  
  4.0.0

  microservice-monitor-server

  
    
      org.springframework.boot
      spring-boot-starter-web
    

    
      de.codecentric
      spring-boot-admin-starter-server
      2.2.0
    

    
      org.springframework.cloud
      spring-cloud-starter-netflix-eureka-client
    

    
      org.springframework.boot
      spring-boot-starter-security
    

    
      org.springframework.boot
      spring-boot-starter-mail
    

  
  
    
      
        org.springframework.boot
        spring-boot-maven-plugin
      
    
  

其中改动的只是添加了spring-boot-starter-mail 的依赖

2、microservice-monitor-server-> application.yml

server:
 port: 8888
spring:
 application:
  name: SpringBootAdmin
 boot:
  admin:
   ui:
    title: SpringBootAdmin-Server
   notify:
    mail:
     from: 123@qq.com
     to: 345@outlook.com
 security:
  user:
   name: "admin"
   password: "admin"
 mail:
  host: smtp.qq.com
  username: 123@qq.com
  password: qq #授权码
  properties:
   mail:
    smtp:
     auth: true
     starttls:
      enable: true
      required: true
eureka:
 instance:
  hostname: localhost
  metadata-map:
   user.name: ${spring.security.user.name}
   user.password: ${spring.security.user.password}
 client:
  register-with-eureka: true
  fetch-registry: true
  serviceUrl:
   defaultZone: http://localhost:8001/register/eureka/

只需要两步就配置完成,根本就没有编写任何的Java的代码,只需简单的配置就可以了。

三、运行测试

能够正常的发送接收邮件!

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。


推荐阅读
author-avatar
驰诗勋
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有