在控制层用resource注入service 而service中用了@Transaction注解时
报 Bean named ‘xxxService’ must be of type [com.xxx.xxxService], but was actually of type [$Proxy6]错误 解决如下:
1.应注入service的接口而非实现类
2.设置proxy-target-class=”true” <tx:annotation-driven transaction-manager=”transactionManager” proxy-target-class=”true”/>加入cglib包
在spring中@Transaction是通过AOP实现的,而spring对AOP有两种实现方式,一种是动态代理,它是通过接口方式实现的,要求所代理的类一定是实现了某一个接口,对一般的类就无法代理,spring默认是这种;通过设置proxy-target-class=”true”,则是使用CGLIB实现AOP,CGLIB直接生成二进制码,使得普通类也可以实现AOP。在没有设置proxy-target-class=”true”时,使用动态代理,是一个临时生成的类,如proxy17,它不是@Resource指定的类,因此出现了上述错误。
转载于:https://my.oschina.net/XYleung/blog/85684