错误就出现在这里:
<aop:config proxy-target-class="false"> <aop:advisor advice-ref="txAdvice" pointcut="execution(public * org.lx.dao..*.*(..))"/> </aop:config> Spring注入的是接口,关联的是实现类。 这里注入了实现类,所以报异常,
proxy-target-class="false"这个是默认值如果注入的是类那么修改为true