in a message driven bean i persist entries to lookup-table with unique entries. Basicly i create a select statement with the criteria api and if i don't find an entry, i create one.

Currently this code is running into mysql errors because in certain cases this entry creation (em.persist(entry)) would violate the unique constrain on my database. another instance of my mdb created the lookup entry after i didn't find it and before i could create it.

How can i handle this synchronization problem, so there still is only one entry?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You need to use SELECT FOR UPDATE or ensure uniqueness differently (e.g. generating unique part of the entry inside Java).

Hibernate supports pessimistic locks which I believe is just another name for the same thing.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.