Spring 配置 事务的几种方式

阅读更多

Spring配置文件中关于事务配置总是由三个组成部分,DataSource、TransactionManager和代理机制这三部分,无论是那种配置方法,一般变化的只是代理机制这块!

 

首先我创建了两个类,一个接口一个实现:

package com.dao;
public interface UserDao {
	public void getUser();	
}

 

实现:

package com.dao.impl;
import org.springframework.orm.hibernate3.support.HibernateDaoSupport;
import com.dao.UserDao;
public class UserDaoImpl extends HibernateDaoSupport implements UserDao {
	public void getUser(){		
	}	
}

 

 

第一种:每个Bean都有一个代理:



	
	
		
		
		
		
		
		
		
		
		
		
		
		
		
	
	
	
		
		
			
				classpath:/com/nms/entity/**/*.hbm.xml
			
		
		
			
				
					org.hibernate.dialect.MySQL5Dialect
				
				true
				true
			
		
	    
      
    
        
        
    
    
        
        
      
          
             
          
        
          
          
              
                PROPAGATION_REQUIRED
              
          
    

 

 

第二种:所有Bean共享一个代理:



	
	
		
		
		
		
		
		
		
		
		
		
		
		
		
	
	
	
		
		
			
				classpath:/com/nms/entity/**/*.hbm.xml
			
		
		
			
				
					org.hibernate.dialect.MySQL5Dialect
				
				true
				true
			
		
	
	
	
		
	
	 
	
		
		
		
		
			
				PROPAGATION_REQUIRED
			
		
	
	
	
		
	
	
	
		
	

 

 

第三种:拦截器:



	
	
		
		
		
		
		
		
		
		
		
		
		
		
		
	
	
	
		
		
			
				classpath:/com/nms/entity/**/*.hbm.xml
			
		
		
			
				
					org.hibernate.dialect.MySQL5Dialect
				
				true
				true
			
		
	    
       
    
        
       
      
      
          
          
          
              
                PROPAGATION_REQUIRED  
              
          
          
      
          
              
                *DaoImpl
              
          
          
              
                transactionInterceptor  
              
          
      
    
    
        
    

 

 

第四种:使用tx标签配置的拦截器:



	
	
		
		
		
		
		
		
		
		
		
		
		
		
		
	
	
	
		
		
			
				classpath:/com/nms/entity/**/*.hbm.xml
			
		
		
			
				
					org.hibernate.dialect.MySQL5Dialect
				
				true
				true
			
		
	
	
	
	  
    
        
    
    
    
        
            
        
    
    
    
        
        
    

 

 

第五种:注解:



	
	
		
		
		
		
		
		
		
		
		
		
		
		
		
	
	
	
		
		
			
				classpath:/com/nms/entity/**/*.hbm.xml
			
		
		
			
				
					org.hibernate.dialect.MySQL5Dialect
				
				true
				true
			
		
	
	
	
	
	
	
	  
    
        
    

 

如果使用了注解,那么实现类应该这样写:

package com.dao.impl;
import org.springframework.orm.hibernate3.support.HibernateDaoSupport;
import org.springframework.stereotype.Component;
import org.springframework.transaction.annotation.Transactional;
import com.dao.UserDao;
@Transactional
@Component("userDaoAgency")
public class UserDaoImpl extends HibernateDaoSupport implements UserDao {
	/**
	 * 为方法增加事务处理特性
	 */
	@Transactional(readOnly=true)
	public void getUser(){		
	}	
}

 

这样每个方法都能自己定义自己的事务处理!

 

请您到ITEYE看我的原创:http://cuisuqiang.iteye.com

或支持我的个人博客,地址:http://www.javacui.com

 

以上内容,是从网络找到的资料总结而来,仅供参考!

你可能感兴趣的:(hibernate,spring,事务,注解,google)