I am working on an appfuse project with underlying Spring and Hibernate application. My application has a page, which gets a lot of concurrent hits. I have a method in the controller class that uses the DAO to do the underlying operation.
I have a method - something like as follows,
@Transactional
private void fetchHistoryRows(){
callFirstmethod();
callSecondMethod();
callThirdMethod();
callFourthMethod();
callFifthMethod();
callSixthMethod();
}
All the six methods used inside the fetchHistoryRows() are database read operations using named queries. And all the methods are marked with @Transactional.
I am continuing to get org.hibernate.StaleObjectStateException: Row was updated or deleted by another transaction (or unsaved-value mapping was incorrect) in one of these methods specifically for a named query.
The query is also as follows,
select distinct h from History h where h.url = :url and h.id <> :id and h.term = :term order by h.updatedDate desc
I am not sure what is causing the StaleObjectStateException, what is going wrong here? Any tips of avoiding this concurrency issue would be really great and helpful