You are currently browsing legacy 4.1 version of documentation. Click here to switch to the newest 5.1 version.
Session: How to Clear a Session
To clear session state, to stop tracking entities and remove all pending commands, etc. the clear
method is used from the advanced
session operations.
Syntax
void clear()
Example
Employee employee = new Employee();
employee.setFirstName("John");
employee.setLastName("Doe");
session.store(employee);
session.advanced().clear();
session.saveChanges(); // nothing will hapen