delete update在hibernate中的使用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了delete update在hibernate中的使用相关的知识,希望对你有一定的参考价值。
之前在hibernate中使用了save方法,使用getCurrentSession不需要自己管理事务,很方便.
sessionFactory.getCurrentSession().save(applicationInfo);
同事update和delete也有两种类似方法:
Session session = sessionFactory.getCurrentSession();
session.update(applicationInfo);
session.flush();
Session session = sessionFactory.openSession();
session.beginTransaction();
session.update(applicationInfo);
session.getTransaction().commit();
使用getCurrentSession和openSession的具体实现存在差异.
以上是关于delete update在hibernate中的使用的主要内容,如果未能解决你的问题,请参考以下文章
hibernate------java-delete-insert-update
org.hibernate.StaleObjectStateException: Row was updated or deleted by another transaction