@Async使用笔记
- 必须是public方法
- 必须是非static方法
- 方法调用的实例必须由spring创建和管理
代码示例如下:
// 创建Foo类@Component class Foo { @Async public static void bar(){ /* ... */ } @Async public void bar2(){ /* ... */ } }
// 调用示例代码class Test { @Autowired //@Lazy(true)可以解决spring循环引用的问题 Foo foo;
public test(){ Foo.bar(); // Not async foo.bar(); // Not async foo.bar2(); // Async } }
时间: 2024-10-22 14:02:34