【spring】spring事务

2019-05-25

声明式事务

使用注解定义事务 @Transactional
     
RoleServiceImpl--insertRole

@Transactional(propagation = Propagation.REQUIRES_NEW,isolation=Isolation.READ_COMMITTED)
public int insertROle(Role role){
     return roleMapper.insertRole(role);
}
使用xml配置事务

   
       
       
       
       
   

   
   
       
           
           
           
           
           
       
   

你可能感兴趣的:(【spring】spring事务)