I need to ensure that an update to an entity does not succumb to intermittent issues such as network errors.
The entity is being saved by a call to getSession().update(object);
where getSession()
returns the current Hibernate session.
Do I need to wrap the update
statement with retries? Or is there some sort of guarantee provided by Hibernate?