spring配置事务管理

阅读更多

首先配置hibernate的数据源和sessionfactory

      
            
               
                  
              classpath:config/properties/db.properties    
                
            
           
          
          
          
          
          
          
          
          
          
          
          
          
              
          
          
              
                  
                    org.hibernate.dialect.MySQLDialect  
                  
              
          
          
              
                config/hibernate/getExpress.hbm.xml  
                config/hibernate/UserInfo.hbm.xml  
              
          
     

 接着就是配置事务管理:


        
        
    
    

 这样只要在方法前加入标签:@Transactional就会对这个方法进行事务管理

如果加在类前面,则是对所有方法进行事务管理

你可能感兴趣的:(spring)