Hibernate Transactions and Concurrency Using attachDirty (saveOrUpdate)

Why is the exception an issue, can’t you just ignore it? If your database supports “upsert” you could theoretically make use of that by adding the following annotation on your entity:

@org.hibernate.annotations.SQLInsert (sql = "INSERT INTO message_user (user_id) VALUES (?) ON CONFLICT DO NOTHING")

Leave a Comment