1. 程式人生 > >Spring異常:ClassNotFoundException: org.aspectj.weaver.reflect.ReflectionWorld$ReflectionWorldException

Spring異常:ClassNotFoundException: org.aspectj.weaver.reflect.ReflectionWorld$ReflectionWorldException

出現了這玩意,肯定是少了什麼東西

前幾天做Spring專案的DEMO的時候,為了簡潔 ,手快誤刪了下面的依賴

    <!--AOP-->
    <dependency>
      <groupId>aopalliance</groupId>
      <artifactId>aopalliance</artifactId>
      <version>1.0</version>
    </dependency>

    <dependency>
      <
groupId
>
org.aspectj</groupId> <artifactId>aspectjweaver</artifactId> <version>1.8.13</version> </dependency>

今天出錯之後報了一個Fail to start ApplicationContext,感到莫名其妙,到處找原因

後來看錯誤報告看到一半,看到Fail to create bean XXXService,以為是Service出了問題,又去找Service的原因

最後5分鐘的時候,才想起把報錯資訊在看一遍,結果立馬就定位到了問題

實際上自己也是夠傻,應該把報錯資訊看完再去思考解決方案,結果白白浪費了一個小時