but was actually of type 'com.sun.proxy.$Proxy**'的两种解决方法
错误描述:Caused by: org.springframework.beans.factory.BeanNotOfRequiredTypeException: Bean named '****' is expected to be of type '****' but was actually of type 'com.sun.proxy.$Proxy**'
的两种解决方法
这是我再做一个教务系统时遇到两次这样的问题,两次用下述不同的方法解决的,希望也能帮助到你.
这个错误的原因是spring aop代理混用的问题,如果想要了解什么是Spring aop代理与为什么会混乱,自己去百度吧,我还是直奔主题哈,相信大家解决问题心切.
第一种解决的方法:
在applicationContext.xml文件里面的
<!--开启基于注解的事务,使用xml配置形式的事务(必要主要的都是使用配置式) -->
<aop:config>
<!-- 切入点表达式 -->
<aop:pointcut expression="execution(* com.qihang.service..*(..))" id="txPoint"/>
<!-- 配置事务增强 -->
<aop:advisor advice-ref="txAdvice" pointcut-ref="txPoint"/>
</aop:config>
这个语句的下面添加这样一句话
<aop:aspectj-autoproxy proxy-target-class="true"/>
添加后的效果:
<!--开启基于注解的事务,使用xml配置形式的事务(必要主要的都是使用配置式) -->
<aop:config>
<!-- 切入点表达式 -->
<aop:pointcut expression="execution(* com.qihang.service..*(..))" id="txPoint"/>
<!-- 配置事务增强 -->
<aop:advisor advice-ref="txAdvice" pointcut-ref="txPoint"/>
</aop:config>
<aop:aspectj-autoproxy proxy-target-class="true"/>
然后运行一下项目试试吧,如果还不行就试试下面的方法,上面要求添加的语句也不要删了哦
第二种方法:
这是我在SSM+shiro继承开发的时候遇到的问题,出的错误类型也是 org.springframework.beans.factory.BeanNotOfRequiredTypeException: Bean named 'xuejiService' is expected to be of type 'com.qihang.serviceImpl.XuejiServiceImpl' but was actually of type 'com.sun.proxy.$Proxy33'
在用shiro的时候有一段配置是这样的:
<!--
5.启用了IOC容器中使用shiro的注解
注意:只有在配置了LifecycleBeanPostProcessor之后才可以
-->
<bean class="org.springframework.aop.framework.autoproxy.DefaultAdvisorAutoProxyCreator"
depends-on="lifecycleBeanPostProcessor">
</bean> <!--此处的depends-on与上面的LifecycleBeanPostProcessor配置的id保持一致-->
<bean class="org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor">
<property name="securityManager" ref="securityManager"/>
</bean>
这也是
DefaultAdvisorAutoProxyCreator
所使用代理器混乱的问题:需要在里面添加下面的一句话:
<property name="proxyTargetClass" value="true"/>
添加后的效果为:
<bean class="org.springframework.aop.framework.autoproxy.DefaultAdvisorAutoProxyCreator"
depends-on="lifecycleBeanPostProcessor">
<property name="proxyTargetClass" value="true"/>
</bean> <!--此处的depends-on与上面的LifecycleBeanPostProcessor配置的id保持一致-->
<bean class="org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor">
<property name="securityManager" ref="securityManager"/>
</bean>
这两个方法所需要添加的语句都添加上后,项目应该就能运行了,如果还是报同样错误的话 ,就找找你现在用的框架,所写的配置文件里面是不是也有类似代理的语句,然后百度一下该代理对应的参数,类似于上述情况配置一下,应该就ok了!
转载来源:but was actually of type ‘com.sun.proxy.$Proxy**’的两种解决方法
上一篇: 黑客破解口令常用的三种方法
下一篇: PHP crypt()函数的用法讲解
推荐阅读
-
but was actually of type 'com.sun.proxy.$Proxy**'的两种解决方法
-
but was actually of type 'com.sun.proxy.$Proxy16'
-
spring中动态代理 but was actually of type [com.sun.proxy.$Proxy18]
-
解决使用@AutoWired注入出现的but was actually of type 'com.sun.proxy.$Proxy**问题
-
关于 but was actually of type 'com.sun.proxy.$Proxy14'
-
but was actually of type ‘com.sun.proxy.$Proxy**‘ AOP事务代理混用
-
but was actually of type 'com.sun.proxy.$Proxy18'
-
**Bean named 'XXX' is expected but was actually of type 'com.sun.proxy.$Proxy**'的两种解决方法**
-
声明式事务配置报错:but was actually of type 'com.sun.proxy.$Proxy**'解决