文章目录 概要技术细节 概要 最近springboot项目中使用了redis订阅功能,并且开启了异步@Async和任务@EnableAsync,当运行程序时报错: 技术细节 需要在开启任务注解上加入: @EnableAsync(proxyTargetClass = true) public class CheckOrderApplication { 再次运行,启动正常。