I want to ask what could be the best solution for multithreaded Java application to ensure that all threads access db synchronously. For example each thread represents separate transaction, and first checks db for value and then depending on answer has to insert or update some fields in database(note between check, insert and commit application is doing other processings). But the problem is that another thread might be doing just the same thing on same table. More specific example. Thread T1 starts transaction, then checks table ENTITY_TABLE for entry with code '111' if found updates its date, if not found inserts new entry, then commits transaction. Now imagine thread T2 does exactly same thing. Now there are few problems: 1. T1 and T2 checks db and find nothing and both insert same entry. 2. T1 checks db, find entry with old date, but on commit T2 already has updated entry to more recent date. 3. If we use cache and synchronize access to cache we have a problem: T1 acquires lock checks db and cache if not found add to cache, release lock, commit. T2 does the same, finds entry in cache going to commit. But T1 transaction fails and is roll backed. Now T2 is in bad shape, because it should insert to ENTITY_TABLE but doesn't know that. 4. more?
I'm working on creating simple custom cache with syncronization and solving problem 3. But Im interested maybe there is some more simple solution? Have anyone had to solve similar problem? How you did it?