ApplicationEventMulticaster not initialized - call 'refresh' before multicasting events

后端 未结 2 1236
时光取名叫无心
时光取名叫无心 2021-02-13 20:02

I am trying to implement ehcache for my application but when try invoking the server, getting the following error -

java.lang.IllegalStateException         


        
2条回答
  •  半阙折子戏
    2021-02-13 21:10

    This is kinda stupid but my problem was that I had placed the @SpringBootApplication class (namely App, Application, WebApplication in most projects) inside the default package. Hence, everything was in total disarray.

    I'm not sure why this exact error showed up, but moving the application class to a package sure fixed it.

提交回复
热议问题