Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
hibernate 中的 session.clear 和 evict 方法有什么区别。两者都是从 session 中删除的实例的分离对象。我什么时候应该在 hibernate 中使用 session.clear 和 session.evict。
evict()从会话中逐出单个对象。clear()驱逐会话中的所有对象。调用 clear() 就像在与会话关联的每个对象上调用 evict()。