编程语言
首页 > 编程语言> > 2021-02-10 jdk11 对应的aspectjweaver版本--:0 can‘t find referenced pointcut pointCut

2021-02-10 jdk11 对应的aspectjweaver版本--:0 can‘t find referenced pointcut pointCut

作者:互联网

今天学习aop, 配置了:

` <dependency>
          <groupId>org.springframework</groupId>
          <artifactId>spring-aspects</artifactId>
          <version>4.3.12.RELEASE</version>
      </dependency>`

自动下载的aspectjweaver版本为1.8.9,结果运行出现:0 can’t find referenced pointcut pointCut,百度大家提到的是版本问题和编写错误。
仔细检查了一番:编写无错
本以为版本应该无问题,被逼无奈下载了一个更新的版本:

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

运行成功

标签:02,10,referenced,pointcut,pointCut,版本,find,aspectjweaver
来源: https://blog.csdn.net/qq_42349617/article/details/113783028