在spring3以上版本中使用spring的依赖注入(注解或者xml方式)和aop功能时,发现了一个问题,如果不设置<aop:aspectj-autoproxy proxy-target-class="true"/>那么在获取bean时一直报:(无论通过name还是type都获取不到bean)
1 ApplicationContext app = new ClassPathXmlApplicationContext("applicationContext.xml"); 2 AccountService accountService = app.getBean(AccountServiceImpl.class);//此处是通过AccountService接口的实现类来获取bean
报错信息如下:
1 org.springframework.beans.factory.NoSuchBeanDefinitionException: No unique bean of type 2 或者 3 java.lang.ClassCastException: com.sun.proxy.$Proxy12 cannot be cast to cn.edu.nuc.SpringTest.service.impl.DemoServiceImpl
proxy-target-class="true" 与proxy-target-class="false"的区别:
proxy-target-class属性值决定是基于接口的还是基于类的代理被创建。
<aop:aspectj-autoproxy proxy-target-class="false"/> 基于接口,使用JDK动态代理
<aop:aspectj-autoproxy proxy-target-class="true"/> 基于类,需要使用cglib库