org.springframework.dao.InvalidDataAccessApiUsageException:

来源:互联网 发布:什么是遗传算法 编辑:程序博客网 时间:2024/06/05 14:21

报错:

org.springframework.dao.InvalidDataAccessApiUsageException: Write operations are not allowed in read-only mode (FlushMode.MANUAL):

dao代码:

public void save(LessModel lm) {this.getHibernateTemplate().save(lm);}
解决办法:

上述代码修改为

public void save(LessModel lm) {this.getHibernateTemplate().setFlushMode(2);this.getHibernateTemplate().save(lm);}



阅读全文
0 0
原创粉丝点击