Spring使用问题记录–but was actually of type ‘com.sun.proxy.$Proxy62’

  • Post author:
  • Post category:其他




堆栈信息

2020-01-15T16:42:18.935+08:00 WARN xxxxxx
Caused by: org.springframework.beans.factory.BeanNotOfRequiredTypeException: xxxxx but was actually of type 'com.sun.proxy.$Proxy62'
	at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1257)
	at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1167)
	at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:593)
	... 53 common frames omitted



问题解决方式

  1. 注解方式

    在这里插入图片描述
  2. 第一种配置文件方式
<!--开启基于注解的事务,使用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"/>

然后运行一下项目试试吧,如果还不行就试试下面的方法,上面要求添加的语句也不要删了哦

  1. 第二种配置文件方式
<!--
	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> 

<bean class="org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor">
	<property name="securityManager" ref="securityManager"/>
</bean>

这两个方法所需要添加的语句都添加上后,项目应该就能运行了,如果还是报同样错误的话 ,就找找你现在用的框架,所写的配置文件里面是不是也有类似代理的语句,然后百度一下该代理对应的参数,类似于上述情况配置一下,应该就ok了!



补充内容:@EnableAspectJAutoProxy注解源码

@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Import(AspectJAutoProxyRegistrar.class)
public @interface EnableAspectJAutoProxy {

	/**
	 * Indicate whether subclass-based (CGLIB) proxies are to be created as opposed
	 * to standard Java interface-based proxies. The default is {@code false}.
	 */
	boolean proxyTargetClass() default false;

	/**
	 * Indicate that the proxy should be exposed by the AOP framework as a {@code ThreadLocal}
	 * for retrieval via the {@link org.springframework.aop.framework.AopContext} class.
	 * Off by default, i.e. no guarantees that {@code AopContext} access will work.
	 * @since 4.3.1
	 */
	boolean exposeProxy() default false;

}

其中proxyTargetClass属性:指示是否创建基于子类(CGLIB)的代理,而不是标准的基于Java接口的代理。默认为false。



版权声明:本文为u013412772原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。