解决:java.lang.IllegalStateException: ApplicationEventMulticaster not initialized

2022-04-13 15:59:37 浏览数 (1)

1. springboot 项目启动时报错:

代码语言:javascript复制
   java.lang.IllegalStateException: ApplicationEventMulticaster not initialized - call 'refresh' before multicasting events via the context: Root WebApplicationContext: startup date [Tue Jul 18 14:49:33 CST 2018]; root of context hierarchy

2. 原因、解决:

改了包名,以至于扫描包时找不到原路径。如红框中设置(原本叫 cn.xxx.mapper)。

另:网上看到有情况是 service 的 name 重复、 jar 包冲突或者不完整、少 maven 依赖 ...

0 人点赞