在要使用异步方法的类上(或主启动类上)添加 @EnableAsync 注解。
@EnableAsync
Tips
@EnableAsync 注解主要是为了扫描范围包下的所有 @Async 注解。
@Async
@Async public void hello(){ try{ Thread.sleep(3000); } catch (Exception e){ e.printStackTrace(); } System.out.println("Processing"); }
Shiro 邮件任务