BeanNotOfRequiredTypeException: Bean named 'accountServiceImpl' is expected to be of type 'com.spring.service.impl.AccountServiceImpl' but was actually of type 'com.sun.proxy.$Proxy29'
注解
proxy-target-class 设置为true
@EnableAspectJAutoProxy(proxyTargetClass = true)
即可
@EnableTransactionManagement(proxyTargetClass = true)//事务注解解析器
proxy-target-class解释
spring事务[xml,注解]配置方式