java.lang.ClassNotFoundException: org.aspectj.util.PartialOrder$PartialComparable

前端 未结 4 2085
醉话见心
醉话见心 2021-01-12 03:11

I am using Spring 4.2.4.RELEASE in my web application and I would like to remove the dependency on aspectjweaver.jar from it. I don\'t use AOP directly and I certainly don\'

4条回答
  •  长发绾君心
    2021-01-12 03:43

    The answer is no. Spring AOP is syntactically an AspectJ subset, thus it uses AspectJ classes for parsing pointcuts. It also exposes AspectJ classes like JoinPoint, ProceedingJoinPoint and AspectJ annotations like @Poinctut, @Before, @After, @Around, @DeclareParents etc.

提交回复
热议问题