关于ssh的$Proxy0 cannot be cast to 报错

时间:2021-02-22 14:22:14
 报错:Exception in thread "main" java.lang.ClassCastException: $Proxy0 cannot be cast to com.wr.domain.User
度娘了,说解决方法有两种 1、给service类添加一个接口iService,让service类实现它,则创建代理类时使用JDK动态代理就不会出现问题 2、设置beanNameAutoProxyCreator的proxyTargetClass属性为true,意思是强制使用CGLIB代理,前提是你已经将CGLIB包加入到项目中
第一种方法我已经做了,但是第二种方法我不会怎么弄。

贴上代码,大神帮忙啊,急急!!!
public class Test {

/**
 * @param args
 */
public static void main(String[] args) {
ApplicationContext ac = new ClassPathXmlApplicationContext("applicationContext.xml");
User u = (User)ac.getBean("userServiceImpl");

u.setId("101");
u.setPwd("101");

UserServiceImpl userServiceImpl = new UserServiceImpl();
userServiceImpl.addUser(u);

}

}
applicationContext.xml<?xml version="1.0" encoding="UTF-8"?>
<beans
xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.0.xsd">


<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="configLocation"
value="classpath:hibernate.cfg.xml">
</property>
</bean>
<!-- applicationContext.xml事务管理器的配置 -->
<bean id="txManager"
class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory">
<!-- 注入applicationContext.xml中配置的sessionFactory -->
<ref bean="sessionFactory" />
</property>
</bean>
<!-- dao -->
<bean id="UserDaoImpl" class="com.wr.dao.impl.UserDaoImpl">
<property name="sessionFactory" ref="sessionFactory"></property>
</bean>
<!-- service -->
<bean id="userServiceImpl" class="com.wr.service.impl.UserServiceImpl">
<property name="userDao" ref="UserDaoImpl"></property>
</bean>
<!-- action -->
<bean name="addUserAction" class="com.wr.action.addUserAction">
<property name="userServiceImpl" ref="userServiceImpl"></property>
</bean>
<!-- 事务通知的配置 -->
<tx:advice id="txAdvice" transaction-manager="txManager">
<tx:attributes>
<!-- 对do开头的方法要求事务 -->
<tx:method name="add*" propagation="REQUIRED" />
<tx:method name="delete*" propagation="REQUIRED" />
<tx:method name="update*" propagation="REQUIRED" />
<!-- 对其他方法的配置 -->
<tx:method name="*" propagation="SUPPORTS" read-only="true" />

</tx:attributes>
</tx:advice>
<!-- 将事务通知和切入点组合 -->
<aop:config>
<aop:pointcut expression="execution(* com.wr.service.impl.*.*(..))" id="pc" />
<aop:advisor advice-ref="txAdvice" pointcut-ref="pc" />
</aop:config>
</beans>



10 个解决方案

#1


不能添加到数据库里面,Test测试文件运行 到User u = (User)ac.getBean("userServiceImpl"),在这里就不能往下运行了;

#2


 User u = (User)ac.getBean("userServiceImpl"); 这个获取后应该是UserServiceImpl类型,怎么成了User类型?

#3


你看看的的实现类是否实现了接口,接口是转换的是否一致?

#4


问题解决了吗?
第一种方法,我就有问题,我也实现了接口,但是还是报错
java.lang.ClassCastException: $Proxy4 cannot be cast to com.cong.manager.UserDaoImpl

#5


问题解决了吗?
第一种方法,我就有问题,我也实现了接口,但是还是报错
java.lang.ClassCastException: $Proxy4 cannot be cast to com.cong.manager.UserDaoImpl

#6


第一种方法怎么玩,我也错了,在app里面需要加关于那个接口的配置信息吗?

#7


这里的该是   User u = (User)ac.getBean("userServiceImpl");   不知道你这个 userServiceImpl是接口还是类,如果是类的话  user换成 userServiceImpl 实现的接口

#8


引用 7 楼 yanbin_2010 的回复:
这里的该是   User u = (User)ac.getBean("userServiceImpl");   不知道你这个 userServiceImpl是接口还是类,如果是类的话  user换成 userServiceImpl 实现的接口


正解!Spring依赖注入的对象必须是 接口

#9


引用 7 楼 yanbin_2010 的回复:
这里的该是   User u = (User)ac.getBean("userServiceImpl");   不知道你这个 userServiceImpl是接口还是类,如果是类的话  user换成 userServiceImpl 实现的接口

说的很对,但感觉不太完全 补充第二点
1.DAO实现了接口 注意这里强转是DAO接口,不能是实现类
2. DAO没有实现接口,可以用DAO类

#10


这块终于搞明白了,谢谢啦

#1


不能添加到数据库里面,Test测试文件运行 到User u = (User)ac.getBean("userServiceImpl"),在这里就不能往下运行了;

#2


 User u = (User)ac.getBean("userServiceImpl"); 这个获取后应该是UserServiceImpl类型,怎么成了User类型?

#3


你看看的的实现类是否实现了接口,接口是转换的是否一致?

#4


问题解决了吗?
第一种方法,我就有问题,我也实现了接口,但是还是报错
java.lang.ClassCastException: $Proxy4 cannot be cast to com.cong.manager.UserDaoImpl

#5


问题解决了吗?
第一种方法,我就有问题,我也实现了接口,但是还是报错
java.lang.ClassCastException: $Proxy4 cannot be cast to com.cong.manager.UserDaoImpl

#6


第一种方法怎么玩,我也错了,在app里面需要加关于那个接口的配置信息吗?

#7


这里的该是   User u = (User)ac.getBean("userServiceImpl");   不知道你这个 userServiceImpl是接口还是类,如果是类的话  user换成 userServiceImpl 实现的接口

#8


引用 7 楼 yanbin_2010 的回复:
这里的该是   User u = (User)ac.getBean("userServiceImpl");   不知道你这个 userServiceImpl是接口还是类,如果是类的话  user换成 userServiceImpl 实现的接口


正解!Spring依赖注入的对象必须是 接口

#9


引用 7 楼 yanbin_2010 的回复:
这里的该是   User u = (User)ac.getBean("userServiceImpl");   不知道你这个 userServiceImpl是接口还是类,如果是类的话  user换成 userServiceImpl 实现的接口

说的很对,但感觉不太完全 补充第二点
1.DAO实现了接口 注意这里强转是DAO接口,不能是实现类
2. DAO没有实现接口,可以用DAO类

#10


这块终于搞明白了,谢谢啦