Does Hibernate's GenericGenerator cause update and saveOrUpdate to always insert instead of update?
- by Derek Mahar
When using GenericGenerator to generate unique identifiers, do Hibernate session methods update() and saveOrUpdate() always insert instead of update table rows, even when the given object has an existing identifier (where the identifier is also the table primary key)? Is this the correct behaviour?
public class User {
private String id;
…