@Async的基本使用
这个注解的作用在于可以让被标注的方法异步执行,但是有两个前提条件
配置类上添加@EnableAsync注解
需要异步执行的方法的所在类由Spring管理
需要异步执行的方法上添加@Async注解
我们通过一个Demo体会下这个注解的作用吧
第一步:配置类上开启异步:
@EnableAsync
@Configuration
public class Config {
}
第二步:在方法上添加@Async
@Component // 这个类本身要被Spring管理
public class AsyncService {
@Async // 添加注解表示这个方法要异步执行
public void testAsync(){
System.out.println("testAsync invoked");
}
}
@Async无法进行事务管理,需要在内部使用 @Transactional
-
当方法中同时使用 @Transactional 与 @Async 时,事务是可以生效的。
-
@Transactional方法内部调用 @Async 的方式,异步方法的事务是无法生效的。
-
@Async方法内部调用@Transaction 的方式,异步方法事务是可以生效的
原理分析
@EnableAsync内部实现:
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
// 这里是重点,导入了一个ImportSelector
@Import(AsyncConfigurationSelector.class)
public @interface EnableAsync {
// 这个配置可以让程序员配置需要被检查的注解,默认情况下检查的就是@Async注解
Class<? extends Annotation> annotation() default Annotation.class;
// 默认使用jdk代理
boolean proxyTargetClass() default false;
// 默认使用Spring AOP
AdviceMode mode() default AdviceMode.PROXY;
// 在后续分析我们会发现,这个注解实际往容器中添加了一个
// AsyncAnnotationBeanPostProcessor,这个后置处理器实现了Ordered接口
// 这个配置主要代表了AsyncAnnotationBeanPostProcessor执行的顺序
int order() default Ordered.LOWEST_PRECEDENCE;
}