Tagged Questions
0
votes
1answer
57 views
Hibernate/JPA lock OPTIMISTIC_FORCE_INCREMENT not working
I've got a problem setting the lock mode on an object.
Here is the code :
MyObject a = myQuery.getSingleResult();
logger.info(entityManager.getLockMode(a));
entityManager.lock(a, ...
0
votes
1answer
87 views
Hibernate automatic versioning not working (with Spring)
I am trying to use the automatic versioning of Hibernate but when the update method f of the Session is called I do not see the version field in the where clause of the query nor is the version ...
1
vote
0answers
179 views
Spring HibernateTemplate HibernateOptimisticLockingFailureException in multithread
I have encounter a problem when I use the HibernateTemplate from Spring to access mysql database. It works ok in the single thread environment, but It always throw excpetion about the ...
0
votes
1answer
407 views
Recovering from hibernate optimistic locking exception
I have a method like this:
@Transactional(propagation = Propagation.REQUIRES_NEW)
public void doSomeWork(){
Entity = entity = dao.loadEntity();
// do some related work
...
try {
...
3
votes
1answer
533 views
HibernateOptimisticLockingFailureException marks connection as 'closed'?
I'm getting the following stack trace:
org.springframework.orm.hibernate3.HibernateOptimisticLockingFailureException: Object of class [com.btfin.wrapcore.request.MFRequest] with identifier [2850448]: ...
0
votes
0answers
166 views
Hibernate OptimisticLocking not working
I am using Hibernate 3.6.6 with Sping 3.0.4
After adding
@org.hibernate.annotations.Entity(optimisticLock=OptimisticLockType.ALL, dynamicUpdate=true)
to my bean and running following testcase
...
1
vote
2answers
677 views
simple design question about optimistic locking in spring/jpa/hibernate
I have an object GeneralKnowledgeTest and it contains a lot of statistics fields (ratingsCount, responsesCount, ratingStars ...) which are updated every time a user will take that test (takeTest() -> ...
0
votes
3answers
912 views
simple optimistic lock question in jpa/spring/hibernate
I am trying to implement a basic optimistic lock mechanism with a retry interceptor.
So the thing is there is a object Quiz with a property responsesCount. In case that there is a optimistic Lock ...
1
vote
2answers
2k views
org.springframework.transaction.UnexpectedRollbackException for Null @Version column
I'm using Spring 3.0.4-RELEASE, JPA 2.0 with Hibernate as a provider, and JTA JOTM for transactions in my application. I've received the following error when calling entityManager.merge on my entity ...
7
votes
3answers
3k views
Spring Optimistic Locking:How to retry transactional method till commit is successful
I use Spring 2.5 and Hibernate JPA implementation with Java and "container" managed Transactions.
I have a "after user commit" method that updates data in background and need to be committed ...
2
votes
1answer
747 views
jdbctemplate and optimistic locking
In the project I'm in Hibernate and Spring jdbctemplate are mixed. I added optimistic locking. Hibernate works great with versioning but now I have to tansform all this jdbctemplate code to use ...