问题:(把beans.xml中的事务管理(包括事务管理和事物建议)去掉)
错误 org.springframework.dao.InvalidDataAccessApiUsageException: Write operations are not allowed in read-only mode (FlushMode.NEVER/MANUAL):
Turn your Session into FlushMode.COMMIT/AUTO or remove 'readOnly' marker from transaction definition.
原因:
因为没有添加事务边界的时候 OpenSessionInViewFilter就会拦截到任何的调用就会认为 所有的 事务都是只读的。所以hibernate调用save方法,那么就会报错