错误提示:Write operations are not allowed in read-only mode (FlushMode.MANUAL): Turn your Session into FlushMode.COMMIT/AUTO or remove ‘readOnly‘ marker from transaction definition.
我在删除一条数据时出现了以上错误,网上查询的答案基本是说这个错误一般由事务引起的,有可能是项目事务配置文件不正确,但是我删除其它数据并没有出现这个问题,所以不存在项目事务配置文件不正确的问题。
经过逐字逐行的对比代码,发现原来是我在删除方法上忘记了添加Spring注解@Transactional来配置事务。
Write operations are not allowed in read-only mode (FlushMode.MANUAL): Turn your Session into FlushM
原文地址:http://blog.csdn.net/nangongyanya/article/details/47294125