Springboot整合异步任务1
一、使用场景
1.不关心执行结果时
2.多个互不影响的串行执行的方法改为并行执行,减少执行时间,优化程序性能
二、异步方法/类
1.启动类加@EnableAsync注解
@EnableAsync开启异步任务
代码如下(示例):
@EnableAsync // 开启异步任务
public class LogbackApplication {
public static void main(String[] args) {
SpringApplication.run(LogbackApplication.class, args);
}
}
2.给异步方法所在的类加@Component注解
没有加@Component注解不能被容器扫描到
3.给想要异步处理的方法或类加@Async注解
异步方法示例如下(示例):
@Async
public void task1() throws InterruptedException {
long begin = System.currentTimeMillis();
Thread.sleep(10L);
long end = System.currentTimeMillis();
System.out.print("task1耗时:" + (end - begin));
}
或者给某个类加@Async注解,代表这个类下所有方法都是异步方法
异步类示例如下(示例):
@Async // 这个类所有方法都是异步方法
public class AsyncTask {
public void task1() throws InterruptedException {......}
......
}
三、调用异步方法
1.不关心执行结果
例如:前端不关心执行结果,只发起任务执行请求
@GetMapping("test")
public JsonData test() throws InterruptedException {
long begin = System.currentTimeMillis();
this.asyncTask.task1(); // 只需要发起任务,执行任务,不需要得到执行结果
long end = System.currentTimeMillis();
return "start execute";
}
2.多个互不影响的串行执行的方法改为并行执行,减少执行时间
下一节介绍