欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

声明式事务配置报错:but was actually of type 'com.sun.proxy.$Proxy**'解决

程序员文章站 2022-03-05 09:48:59
...

错误描述:Caused by: org.springframework.beans.factory.BeanNotOfRequiredTypeException: Bean named '****' is expected to be of type '****' but was actually of type 'com.sun.proxy.$Proxy**'的两种解决方法

这是我再做一个教务系统时遇到两次这样的问题,两次用下述不同的方法解决的,希望也能帮助到你.

这个错误的原因是spring aop代理混用的问题,如果想要了解什么是Spring aop代理与为什么会混乱,自己去百度吧,我还是直奔主题哈,相信大家解决问题心切.

第一种解决的方法:

在applicationContext.xml文件里面的

<!--开启基于注解的事务,使用xml配置形式的事务(必要主要的都是使用配置式)  -->  
<aop:config>  
    <!-- 切入点表达式 -->  
    <aop:pointcut expression="execution(* com.qihang.service..*(..))" id="txPoint"/>  
    <!-- 配置事务增强 -->  
    <aop:advisor advice-ref="txAdvice" pointcut-ref="txPoint"/>  
</aop:config>

这个语句的下面添加这样一句话

<aop:aspectj-autoproxy  proxy-target-class="true"/>  

添加后的效果:

<!--开启基于注解的事务,使用xml配置形式的事务(必要主要的都是使用配置式)  -->  
<aop:config>  
    <!-- 切入点表达式 -->  
    <aop:pointcut expression="execution(* com.qihang.service..*(..))" id="txPoint"/>  
    <!-- 配置事务增强 -->  
    <aop:advisor advice-ref="txAdvice" pointcut-ref="txPoint"/>  
</aop:config>  
<aop:aspectj-autoproxy  proxy-target-class="true"/> 

然后运行一下项目试试吧

相关标签: 事务