error at ::0 can't find referenced pointcut pointCutName 错误解决方法

Caused by: org.springframework.beans.factory.BeanCreationException: Could not autowire method: public final void org.mybatis.spring.support.SqlSessionDaoSupport.setSqlSessionTemplate(org.mybatis.spring.SqlSessionTemplate); nested exception is java.lang.IllegalArgumentException: error at ::0 can't find referenced pointcut pointCutName
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredMethodElement.inject(AutowiredAnnotationBeanPostProcessor.java:599)
at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:92)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessPropertyValues(AutowiredAnnotationBeanPostProcessor.java:284)
... 65 more

Caused by: java.lang.IllegalArgumentException: error at ::0 can't find referenced pointcut pointCutName


今天在重新复习Spring AOP的时候,使用aspectJ注解来实现Spring AOP时,用下面这种方式来获得pointCut时报错了:

	@Pointcut(value = "execution(* com.westsoft.kft.repairs.service.impl.*.*(..))")
	public void pointCutName() {

	}

	@Before(value = "pointCutName()")
	public void before(JoinPoint jp) {
		System.out.println("before----------" + jp.getSignature().getName());
	}

	@After(value = "pointCutName()")
	public void after(JoinPoint jp) {
		System.out.println("after-----------" + jp.getSignature().getName());
	}
}

上网查了,发现是aspectjweaver-1.5.2.jar这个包版本太低,于是去官网http://www.eclipse.org/aspectj/downloads.php下载了个最新版的替换

下载下来的aspectj-1.8.1里有4个jar包:aspectjrt.jar、aspectjtools.jar、aspectjweaver.jar和org.aspectj.matcher.jar

其余三个我也不知道有什么用,我只替换了其中的aspectjweaver.jar就解决了我的问题~

  • 11
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值