异步执行一般用来发送一些消息数据,数据一致性不要求太高的场景,对于spring来说,它把这个异步进行了封装,使用一个注解就可以实现。
@EnableAsync
注解 异步方法
,为方法添加 @Async
注解
在业务代码中, @Autowired
注入你的类型,使用它即可
我们可以关注到在配置task的时候,是有参数让我们配置线程池的数量的。因为这种实现方法,所以在同一个类中的方法调用,添加@async注解是失效的!,原因是当你在同一个类中的时候,方法调用是在类体内执行的,spring无法截获这个方法调用.
@Async public String sayHello2() throws InterruptedException { Thread.sleep(2 * 1000);//网络连接中 。。。消息发送中。。。 return "我爱你啊!";// 调用方调用后会立即返回,所以返回null }
@Async public Future<String> asyncFunc() throws InterruptedException { int thinking = 2; Thread.sleep(thinking * 1000); System.out.println("async!"); return new AsyncResult<String>("发送消息用了" + thinking + "秒"); }
调用方法
@GetMapping("/lind-demo/asyncFunc") public void async() throws Exception { Future<String> future = null; future = asyncService.asyncFunc(); System.out.println(future.get()); System.out.println("主线程被阻塞执行完成"); }
执行结果
async! 发送消息用了2秒 主线程执行完成