-
要使用@Async,需要添加如下配置:
<task:annotation-driven />
-
异步方法和调用异步方法的方法不能再同一个类。
-
异步方法加注解@Async,调用异步方法的方法所在类要加注解@EnableAsync
-
方法所属的类的对象需要是被Spring容器所管理的,也就是指被@Controller @Service @Repository @Component这些注解的类。
异步方法和调用异步方法...">
要使用@Async,需要添加如下配置:
<task:annotation-driven />
异步方法和调用异步方法的方法不能再同一个类。
异步方法加注解@Async,调用异步方法的方法所在类要加注解@EnableAsync
方法所属的类的对象需要是被Spring容器所管理的,也就是指被@Controller @Service @Repository @Component这些注解的类。
本文标题:Spring异步注解@Async使用注意事项
本文链接:https://www.haomeiwen.com/subject/xwhzpttx.html
网友评论