Springboot整合异步任务1

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.多个互不影响的串行执行的方法改为并行执行,减少执行时间

下一节介绍

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值