一下内容来自网络,非本人原创!

 

在最近的一个项目中,采用springMVC、mybatis,发现一个很恼人的问题:事务管理不起作用!!网上查阅了大量的资料,尝试了各种解决办法,亦未能解决问题!

spring版本:3.0.5

mybatis版本:3.2.2

1、applicationContext.xml配置:


	
		
	
	
		
		
		
		
	 
	   
		
	
	
	
	
		
		
		
		

	
	
	
		
		
	
	
	
		
	
	
		
			
			
			
			
			
			
			
			
			
			
			
			
		
	
	
		
	
		
		
	
2、springMVC.xml配置: 

 


	
	
	

	
	
		
		
			
				
					
				
			
		
	

	
		
			
				
				
				
				
			
		
	

	
	
		
		
		
	

 

由于之前没用过springMVC,对其原理一知半解,一直在考虑是不是aop配置出错等等无关问题,结果破费周折,未能解决!

今天,偶然间看到一篇文章,颇有启发:

由于采用的是SpringMVC、 MyBatis,故统一采用了标注来声明Service、Controller
由于服务器启动时的加载配置文件的顺序为web.xml---root-context.xml(Spring的配置文件)---servlet-context.xml(SpringMVC的配置文件),由于root-context.xml配置文件中Controller会先进行扫描装配,但是此时service还没有进行事务增强处理,得到的将是原样的Service(没有经过事务加强处理,故而没有事务处理能力),所以我们必须在root-context.xml中不扫描Controller,配置如下:

    
     
           
     

在servlet-context.xml中扫描Controller同时不扫描Service,配置如下:

    
    
    
    
    

 

按照上述,修改了配置文件,将service的扫描放在applicationContext.xml中,controller的扫描放在springMVC.xml中,

applicationContext.xml中添加:


		 
	

 

springMVC.xml中修改:


	
		
		
	
重启服务器,调用事务测试方法,结果能够成功启动事务并在出错时回滚,配置完成。 

 

2013-07-24 10:28:59.028 [http-80-1] DEBUG c.w.s.dao.IStudyGroupDao.add [BaseJdbcLogger.java:132] -==>  Preparing: INSERT INTO t_study_group VALUES 
(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) 
2013-07-24 10:28:59.029 [http-80-1] DEBUG c.w.s.dao.IStudyGroupDao.add [BaseJdbcLogger.java:132] -==> Parameters: null, xxx(String), null, 1(Long),
 2013-07-24 10:28:59.024(Timestamp), (String), null, null, null, null, 30(Integer), null
2013-07-24 10:28:59.031 [http-80-1] DEBUG org.mybatis.spring.SqlSessionUtils [SqlSessionUtils.java:165] -Releasing transactional SqlSession
 [org.apache.ibatis.session.defaults.DefaultSqlSession@d30557]
2013-07-24 10:28:59.083 [http-80-1] DEBUG org.mybatis.spring.SqlSessionUtils [SqlSessionUtils.java:283] -Transaction synchronization rolling back
 SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@d30557]
2013-07-24 10:28:59.084 [http-80-1] DEBUG org.mybatis.spring.SqlSessionUtils [SqlSessionUtils.java:298] -Transaction synchronization closing 
SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@d30557]
2013-07-24 10:28:59.085 [http-80-1] ERROR c.wtas.studygroup.domain.StudyGroup [StudyGroupAction.java:342] -edit study group error : 
java.lang.ArithmeticException: / by zero