Spring com.sun.proxy.$Proxy6 cannot be cast to

今天在带领学生做spring声明式事务时,部分同学的程序报错com.sun.proxy.$Proxy6 cannot be cast to。下面就详细介绍一下这个错误的原因及解决方法。

一、工程结构图

Spring com.sun.proxy.$Proxy6 cannot be cast to_第1张图片

applicationContext.xml



	
		
		
		
		
		
		
		
		
		
	
	
		
	
	
		
	
	
		
	
	
		
	
	
		
			
			
			
			
			
			
		
	

	
		
		
	



TestUser:

package config;

import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import service.IUserService;
import service.UserServiceImpl;

public class TestUser {

	/**
	 * @param args
	 */
	@Test
	public void insert(){
		
		ApplicationContext ac=new ClassPathXmlApplicationContext("config/applicationContext.xml");
		IUserService user=(UserServiceImpl) ac.getBean("userServiceImpl");
		user.insertBatch();
	}
}

二、错误原因

       Spring AOP实现方式有两种,一种使用JDK动态代理,另一种通过CGLIB来为目标对象创建代理。如果被代理的目标实现了至少一个接口,则会使用JDK动态代理,所有该目标类型实现的接口都将被代理。若该目标对象没有实现任何接口,则创建一个CGLIB代理,创建的代理类是目标类的子类。
       显然,本工程中是通过JDK动态代理来实现AOP的。

三、解决方法

       1.在applicationContext.xml中增加下面内容,来强制使用CGLIB创建代理。

	 
	
		
		
	


      2.ac.getBean("userServiceImpl")前强制类型改成接口

	public void insert(){
		
		ApplicationContext ac=new ClassPathXmlApplicationContext("config/applicationContext.xml");
		IUserService user=(IUserService) ac.getBean("userServiceImpl");
		user.insertBatch();
	}




你可能感兴趣的:(Spring)