Spring Boot 异步任务 -- @EnableAsync 详解

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring Boot 异步任务 -- @EnableAsync 详解相关的知识,希望对你有一定的参考价值。

参考技术A @EnableAsync 注解启用了 Spring 异步方法执行功能,在 Spring Framework API 中有详细介绍。

@EnableAsync 默认启动流程:
1 搜索关联的线程池定义:上下文中唯一的 TaskExecutor 实例,或一个名为 taskExecutor 的 java.util.concurrent.Executor 实例;
2 如果以上都没找到,则会使用 SimpleAsyncTaskExecutor 处理异步方法调用。

注意:具有 void 返回类型的带注释方法不能将任何异常发送回调用者,默认情况下此类未捕获异常只会被记录日志。

定制 @EnableAsync 启动行为:
1 实现 AsyncConfigurer 接口
2 实现 getAsyncExecutor() 方法自定义 java.util.concurrent.Executor
3 实现 getAsyncUncaughtExceptionHandler() 方法自定义 AsyncUncaughtExceptionHandler

示例:修改 AsyncConfig 配置类实现

Spring Boot与任务

异步任务、定时任务、邮件任务

一、异步任务
在Java应用中,绝大多数情况下都是通过同步的方式来实现交互处理的;但是在处理与第三方系统交互的时候,容易造成响应迟缓的情况,之前大部分都是使用多线程来完成此类任务,其实,在Spring 3.x之后,就已经内置了@Async来完美解决这个问题。

两个注解:
@EnableAysnc、@Aysnc

二、定时任务
项目开发中经常需要执行一些定时任务,比如需要在每天凌晨时候,分析一次前一天的日志信息。Spring为我们提供了异步执行任务调度的方式,提供TaskExecutor 、TaskScheduler 接口。
两个注解:@EnableScheduling、@Scheduled
cron表达式:

技术图片

@Service
public class ScheduledService {

    /**
     * second(秒), minute(分), hour(时), day of month(日), month(月), day of week(周几).
     * 0 * * * * MON-FRI
     *  【0 0/5 14,18 * * ?】 每天14点整,和18点整,每隔5分钟执行一次
     *  【0 15 10 ? * 1-6】 每个月的周一至周六10:15分执行一次
     *  【0 0 2 ? * 6L】每个月的最后一个周六凌晨2点执行一次
     *  【0 0 2 LW * ?】每个月的最后一个工作日凌晨2点执行一次
     *  【0 0 2-4 ? * 1#1】每个月的第一个周一凌晨2点到4点期间,每个整点都执行一次;
     */
   // @Scheduled(cron = "0 * * * * MON-SAT")
    //@Scheduled(cron = "0,1,2,3,4 * * * * MON-SAT")
   // @Scheduled(cron = "0-4 * * * * MON-SAT")
    @Scheduled(cron = "0/4 * * * * MON-SAT")  //每4秒执行一次
    public void hello(){
        System.out.println("hello ... ");
    }
}

三、邮件任务

  1. 邮件发送需要引入spring-boot-starter-mail
<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-mail</artifactId>
        </dependency>
  1. Spring Boot 自动配置MailSenderAutoConfiguration
@EnableAsync  //开启异步注解功能
@EnableScheduling //开启基于注解的定时任务
@SpringBootApplication
public class Springboot04TaskApplication {

    public static void main(String[] args) {
        SpringApplication.run(Springboot04TaskApplication.class, args);
    }
}
  1. 定义MailProperties内容,配置在application.yml中
spring.mail.username=534096094@qq.com
spring.mail.password=gtstkoszjelabijb
spring.mail.host=smtp.qq.com
spring.mail.properties.mail.smtp.ssl.enable=true
  1. 自动装配JavaMailSender
  2. 测试邮件发送
    技术图片
@Autowired
    JavaMailSenderImpl mailSender;

    @Test
    public void contextLoads() {
        SimpleMailMessage message = new SimpleMailMessage();
        //邮件设置
        message.setSubject("通知-今晚开会");
        message.setText("今晚7:30开会");

        message.setTo("17512080612@163.com");
        message.setFrom("534096094@qq.com");

        mailSender.send(message);
    }

    @Test
    public void test02() throws  Exception{
        //1、创建一个复杂的消息邮件
        MimeMessage mimeMessage = mailSender.createMimeMessage();
        MimeMessageHelper helper = new MimeMessageHelper(mimeMessage, true);

        //邮件设置
        helper.setSubject("通知-今晚开会");
        helper.setText("<b style='color:red'>今天 7:30 开会</b>",true);

        helper.setTo("17512080612@163.com");
        helper.setFrom("534096094@qq.com");

        //上传文件
        helper.addAttachment("1.jpg",new File("C:UserslfyPicturesSaved Pictures1.jpg"));
        helper.addAttachment("2.jpg",new File("C:UserslfyPicturesSaved Pictures2.jpg"));

        mailSender.send(mimeMessage);

    }

注意:
在进行测试的时候,需要获取其验证
技术图片

技术图片
顺便说一下我的个人博客
天涯博客
谢谢!!!

以上是关于Spring Boot 异步任务 -- @EnableAsync 详解的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot入门系列如何实现异步执行任务

Spring Boot 整合定时任务和异步任务处理

spring boot 1.5.4 定时任务和异步调用

Spring Boot Async异步执行任务

SpringBoot系列:Spring Boot异步调用@Async

Spring Boot 自定义线程池使用@Async实现异步调用任务