异常积累:org.springframework.dao.InvalidDataAccessApiUsageException Write operations are not allowed in

这种异常就是事务没有开启
1、
转载:文章来源:http://lucky16.iteye.com/blog/673903

此异常是由于Spring提供的Open Session In View而引起的。
开启OpenSessionInViewFilter这个过滤器的时候FlushMode就已经被默认设置为了MANUAL,如果FlushMode是MANUAL或NEVEL,在操作过程中 hibernate会将事务设置为readonly,所以在增加、删除或修改操作过程中会出现该错误 
  
       hibernateFilter  
       org.springframework.orm.hibernate3.support.OpenSessionInViewFilter  
            
               flushMode  
               AUTO  
            
         
           singleSession  
           true  
         
     
     
       hibernateFilter  
       /*  
    

2、@Transactional放在service层

你可能感兴趣的:(Spring)