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

出现了这玩意,肯定是少了什么东西

前几天做Spring项目的DEMO的时候,为了简洁 ,手快误删了下面的依赖

    
    <dependency>
      <groupId>aopalliancegroupId>
      <artifactId>aopallianceartifactId>
      <version>1.0version>
    dependency>

    <dependency>
      <groupId>org.aspectjgroupId>
      <artifactId>aspectjweaverartifactId>
      <version>1.8.13version>
    dependency>

今天出错之后报了一个Fail to start ApplicationContext,感到莫名其妙,到处找原因

后来看错误报告看到一半,看到Fail to create bean XXXService,以为是Service出了问题,又去找Service的原因

最后5分钟的时候,才想起把报错信息在看一遍,结果立马就定位到了问题

实际上自己也是够傻,应该把报错信息看完再去思考解决方案,结果白白浪费了一个小时

你可能感兴趣的:(Spring,错误收集)