导入依赖

    1. <!--定时任务模块-->
    2. <dependency>
    3. <groupId>xyz.erupt</groupId>
    4. <artifactId>erupt-job</artifactId>
    5. <version>1.8.5</version>
    6. </dependency>

    如果需要发送邮件的话,需要去修改配置文件

    1. # mail相关配置
    2. spring.mail.username=邮箱账号(qq邮箱的账号)
    3. spring.mail.password=密码(smtp的密码,不是qq密码)
    4. spring.mail.host=smtp.qq.com
    5. spring.mail.port=25
    6. spring.mail.properties.auth = true
    7. spring.mail.properties.enable = true
    8. spring.mail.properties.required = true

    配置成功后启动后效果如下,自动增加了任务维护、任务日志、发送邮件菜单!
    image.png

    可以发送邮件到指定的邮箱

    image.png