Springboot异步、邮件发送、定时任务

准备工具:IntelliJ IDEA

Springboot异步任务:
1.SpringbootApplication 开启异步注解功能 @EnableAsync

@EnableAsync // 开启异步注解功能
@SpringBootApplication
public class SpringbootApplication {
    public static void main(String[] args) {
        SpringApplication.run(Springboot09TestApplication.class, args);
    }
}
  1. 编写AsyncService类 添加进 @Service ,方法上添加 @Async 告诉spring这是一个异步方法
@Service
public class AsyncService {
    @Async //告诉spring这是一个异步方法
    public void helo(){
        //快捷键  ctrl+alt+t
        try {
            Thread.sleep(3000);//等待3秒
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        System.out.println("数据正在加载......");
    }
}
  1. AsyncController 控制器 ,注入 AsyncService 写方法调用 .helo()
@RestController
public class AsyncController {
    @Autowired
    AsyncService asyncService;
    // 异步测试  http://localhost:8080/hello
    @RequestMapping("/hello")
    public String hello(){
        asyncService.helo();//停3秒
        return "OK";
    }
}

4.运行
Springboot异步、邮件发送、定时任务

Springboot邮件发送:

1.添加依赖

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

2.application.properties 邮件发送配置

spring.mail.username=邮箱
#配置邮件客户端  授权:mdhcdnasrvuvejad
spring.mail.password=mdhcdnasrvuvejad
# 发送的服务器
spring.mail.host=smtp.qq.com
# 开启加密验证  qq需要配置ssl
spring.mail.properties.mail.smtp.ssl.enable=true

3.编写测试方法( 真实的项目,测试的内容是在controller写的 )

@SpringBootTest
class Springboot09TestApplicationTests {
    @Autowired
    JavaMailSenderImpl mailSender;
    //简单的邮件发送 3步
    @Test
    void contextLoads() {
        SimpleMailMessage mailMessage = new SimpleMailMessage();
        mailMessage.setSubject("这是发送标题吖");
        mailMessage.setText("这是发送的内容,……");
        mailMessage.setTo("邮箱");//接收
        mailMessage.setFrom("邮箱");//发送
        mailSender.send(mailMessage);
    }
    //复杂的邮件
    @Test
    void contextLoads2() throws MessagingException {
        MimeMessage mimeMessage = mailSender.createMimeMessage();
        //组装  true:开启支持多文件
        MimeMessageHelper helper = new MimeMessageHelper(mimeMessage, true);
        //正文
        helper.setSubject("哈哈");
        helper.setText("<p style='color:red'>哈哈text</p>", true);//true开启HTML文本识别
        //附件
        helper.addAttachment("1.jpg", new File("C:\\图片路径\\1.jpg"));
        helper.addAttachment("2.jpg", new File("C:\\图片路径\\2.jpg"));
        helper.setTo("邮箱");
        helper.setFrom("邮箱");
        mailSender.send(mimeMessage);
    }

    //封装一个方法
    public void sendMail(Boolean html, String subject, String text) throws MessagingException {
        // 一个复杂的邮件
        MimeMessage mimeMessage = mailSender.createMimeMessage();
        //组装
        MimeMessageHelper helper = new MimeMessageHelper(mimeMessage, html);
        //正文
        helper.setSubject(subject);
        helper.setText(text, true);
        //附件
        helper.addAttachment("1.jpg", new File("C:\\图片路径\\1.jpg"));
        helper.addAttachment("2.jpg", new File("C:\\图片路径\\2.jpg"));
        helper.setTo("邮箱");
        helper.setFrom("邮箱");
        mailSender.send(mimeMessage);
    }
}

运行:

Springboot异步、邮件发送、定时任务

Springboot定时任务:

定时任务也叫计划任务,是任务在约定的时间执行已经计划好的工作,这是表面的意思。在Linux中,我们经常用到 cron 服务器来完成这项工作。cron服务器可以根据 配置文件约定的时间来执行特定的任务。

1.开启异步定时器功能的注解 @EnableScheduling

@EnableScheduling //开启异步定时器功能的注解
@SpringBootApplication
public class Springboot09TestApplication {
    public static void main(String[] args) {
        SpringApplication.run(Springboot09TestApplication.class, args);
    }
}

2.编写service类 :ScheduledService ,@service注入service
写方法标注cron表达式(设置定时)

package com.hh.service;

import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Service;

import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;

@Service // 添加进  service
public class ScheduledService {
    // 在一个特定的时间执行 Timer 方法  (秒 分 时 日 月 周几)
    @Scheduled(cron = "0/5 * * * * ?")
    public void hello(){
        DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        System.out.println(dateFormat.format(new Date()) +"--------hello,ScheduledService.......被执行了~");
    }
}

执行(定时设置每5秒执行一次)

Springboot异步、邮件发送、定时任务
cron表达式 在线生成表达式:

https://www.bejson.com/othertools/cron/ 

里面有很多cron表达式可以参考

常用表达式例子

  (1)0/2 * * * * ?   表示每2秒 执行任务

  (1)0 0/2 * * * ?    表示每2分钟 执行任务

  (1)0 0 2 1 * ?   表示在每月的1日的凌晨2点调整任务

  (2)0 15 10 ? * MON-FRI   表示周一到周五每天上午10:15执行作业

  (3)0 15 10 ? 6L 2002-2006   表示2002-2006年的每个月的最后一个星期五上午10:15执行作

  (4)0 0 10,14,16 * * ?   每天上午10点,下午2点,4点 

  (5)0 0/30 9-17 * * ?   朝九晚五工作时间内每半小时 

  (6)0 0 12 ? * WED    表示每个星期三中午12点 

  (7)0 0 12 * * ?   每天中午12点触发 

  (8)0 15 10 ? * *    每天上午10:15触发 

  (9)0 15 10 * * ?     每天上午10:15触发 

  (10)0 15 10 * * ?    每天上午10:15触发 

  (11)0 15 10 * * ? 2005    2005年的每天上午10:15触发 

  (12)0 * 14 * * ?     在每天下午2点到下午2:59期间的每1分钟触发 

  (13)0 0/5 14 * * ?    在每天下午2点到下午2:55期间的每5分钟触发 

  (14)0 0/5 14,18 * * ?     在每天下午2点到2:55期间和下午6点到6:55期间的每5分钟触发 

  (15)0 0-5 14 * * ?    在每天下午2点到下午2:05期间的每1分钟触发 

  (16)0 10,44 14 ? 3 WED    每年三月的星期三的下午2:10和2:44触发 

  (17)0 15 10 ? * MON-FRI    周一至周五的上午10:15触发 

  (18)0 15 10 15 * ?    每月15日上午10:15触发 

  (19)0 15 10 L * ?    每月最后一日的上午10:15触发 

  (20)0 15 10 ? * 6L    每月的最后一个星期五上午10:15触发 

  (21)0 15 10 ? * 6L 2002-2005   2002年至2005年的每月的最后一个星期五上午10:15触发 

  (22)0 15 10 ? * 6#3   每月的第三个星期五上午10:15触发
上一篇:leetcode---二叉树的分层遍历(逐层的返回其按照层序遍历得到的节点值,从左到右访问所有节点)


下一篇:Spring boot之邮件发送