If I do the following
session.getTransaction().rollback();
is it then ok/possible to start calling save/update/delete etc. on the same session object? Couldnt find the answer to this in the Hibernate Session/Transaction API, or in the Hibernate reference documentation.
Or do you recommend me to close that Session object, open a new Session and begin a new Transaction?