异步处理还是非常常用的,比如我们在网站上发送邮件,后台会去发送邮件,此时前台会造成响应不动,直到邮件发送完毕,响应才会成功,所以我们一般会采用多线程的方式去处理这些任务。
给hello方法添加@Async注解,SpringBoot就会自己开一个线程池,进行调用!
//告诉Spring这是一个异步方法
@Async
@Service
public class AsyncService {
public void hello(){
try {
Thread.sleep(3000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
@RestController
public class AsyncController {
@Autowired
AsyncService asyncService;
@RequestMapping("/hello")
public String hello(){
asyncService.hello();
return "ok!";
}
}
但是要让这个注解生效,我们还需要在主程序上添加一个注解@EnableAsync ,开启异步注解功能。
@EnableAsync //开启异步注解功能
@SpringBootApplication
public class SwaggerDemoApplication {
public static void main(String[] args) {
SpringApplication.run(SwaggerDemoApplication.class, args);
}
}
重启测试,网页瞬间响应,后台代码依旧执行!
原文:https://www.cnblogs.com/hellowen/p/13026444.html