Prev Next

Hibernate / Hibernate Caching

Explain evict method in Hibernate.

session.evict(obj) will remove the object instance from the session cache. Therefore if you are saving the object for the first time, you will have to explicitly commit via session.save(obj) before evicting the object from the cache. Subsequent update calls should follow through session.saveOrUpdate(obj) or session.update(obj) before calling calling evict to remove the loaded object from the cache.

More Related questions...

Show more question and Answers...


Comments & Discussions