Bean named ‘xxx’ is expected to be of type ‘cn.xxx’ but was actually of type ‘com.sun.proxy.$Proxy22


在学习spring aop中的动态代理时,碰到了一个问题:
“名为“xxx”的Bean的类型应该是“com”.xxx’,但实际上是’com.sun.proxy.$Proxy22’类型的。”
spring使用的动态代理有两种:JDK Proxy 和CGLIB。
使用前者必须实现至少一个接口才能实现对方法的拦截。
使用后者需要两个jar包:asm.jar和cglib.jar

	ApplicationContext ac =
			new ClassPathXmlApplicationContext("applicationContext.xml");
	System.out.println(ac);
	 UserServiceImpl bean = ac.getBean("userService",UserServiceImpl.class); 

**问题出在这句代码上 UserServiceImpl bean = ac.getBean(“userService”,UserServiceImpl.class);不能用接口的实现类( UserServiceImpl)来转换Proxy的实现类,它们是同级,应该用共同的接口(UserService)来转换 **

把代码改为 UserService bean = ac.getBean(“userService”,UserService.class);

简单地说就是要用该类的接口来转换,而且必须是该类的接口