Hello,
We have 2 applications who have the same instance of the database as the back end. Needless to say that both these applications simultaneously perform CRUD operations on the same tables.
Both of the applications use Spring and hibernate. However they use different versions. Application A uses Spring 2.5.6 and Hibernate 3.3.1.GA. This uses traditional hibernate mapping files. The other (Application B) uses spring 3.0.0.M3 and Hibernate 3.5.0.CR1. This uses hibernate annotations to decorate the domain layer.
Application B almost daily runs into conflicting primary keys.
Code:java.sql.BatchUpdateException: ORA-00001: unique constraint (RESNA.XPKMX_TRX) violated
This is also not restricted to one table.
I tried using sequences but that was an un mitigated disaster. The Dba is also adding and removing rows directly using sql.
All the primary keys use
to determine the next available primary key.Code:org.hibernate.id.IncrementGenerator
The knee jerk solution to this would be to catch the exception and try saving it again, hoping that the primary key generator eventually gets a valid one. But i can see this process running till infinity locking up resources.
Any ideas how can i proceed.
Thanks,
s.


Reply With Quote