Springboot的异步任务注解
Springboot的异步任务
·
假设有一个服务会使线程停顿3秒
package com.fdw.springbootstudy.service;
import org.springframework.stereotype.Service;
@Service
public class AsyncService {
public void hello(){
try {
Thread.sleep(3000);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("数据正在处理");
}
}
在Controller中调用后
1.为了解决这个问题,先在启动类上开启异步注解功能
2.然后在方法上加上异步注解
3.效果
更多推荐
已为社区贡献2条内容
所有评论(0)