运用spring时出现org.springframework.beans.factory.BeanNotOfRequiredTypeException: 错误

错误信息:

Caused by: org.springframework.beans.factory.BeanNotOfRequiredTypeException: Bean named 'studentService' is expected to be of type [com.ddp.service.spring.StudentService] but was actually of type [org.springframework.aop.aspectj.AspectJExpressionPointcut]


网上解决方案:

1.使用aop配置: 
      

2. aspectj配置: 
    
	
3. 事务annotation配置: 
    
 

自己试了一下,结果还是不能解决自己的问题,网上说的什么接口注入,类注入,jdk动态代理,cglib代理倒是理解并表示赞同,奈何此处发生的错误原因主要在于最后一句but was actually of type [org.springframework.aop.aspectj.AspectJExpressionPointcut],此句话说明本来我们是想引用我们业务类里面的'studentService',结果实际引用的是org.springframework.aop.aspectj.AspectJExpressionPointcut里面的'studentService',也就是说我们在定义AOP的时候,它的ID也是'studentService',和我们的业务类一模一样,故此引用错了,回头找了找我的bean文件,发现果然是这个问题,改之,解决

你可能感兴趣的:(note)