码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2019-08-29 18:08:47      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:span   代理   init   cannot   exception   new   cat   spec   account   

在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库

 

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

标签:span   代理   init   cannot   exception   new   cat   spec   account   

原文地址:https://www.cnblogs.com/mzcx/p/11430881.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!