Tagged Questions
0
votes
0answers
10 views
Difference between using update() and lock(x, READ) to reattach a versioned entity
I have a versioned entity that I want to re-attach to a new session and I am wondering what is the best method to use.
The documentation says update() should be used, but also states
You can also ...
0
votes
1answer
72 views
Hibernate @Version causing database foreign key constraint failure
I have two hibernate/JPA entities
@Entity
@Table(name = "conference_room", uniqueConstraints = @UniqueConstraint(columnNames = "code"))
class ConferenceRoom {
@Id
@GeneratedValue(strategy = ...
0
votes
1answer
56 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, ...
1
vote
3answers
92 views
Testing Optimistic Locking in Java EE environment
As I understand if a row in a database table is updated simultaneously by multiple threads the database would flag an error.
In our production environment we have 2 Tomcat servers in a cluster. It ...
0
votes
1answer
113 views
Hibernate Optimistic Locking : Not getting any exception
I am trying to update the same row in different transaction to understand the optimistic locking of Hibernate.
But I am not getting any StaleObjectStateException or any other exception.
public void ...
2
votes
0answers
145 views
EntityManager throws OptimisticLockException when try to delete locked entity in same transaction
Here is my code:
EntityManager em = JPAUtil.createEntityManager();
try {
EntityTransaction tx = em.getTransaction();
try {
//do some stuff here
tx.begin();
...
0
votes
1answer
85 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 ...
0
votes
2answers
322 views
Best practice Hibernate optimistic locking and web application
I have a web application made with Tapestry5 (java webframework) and Hibernate. Now I'm trying to add optimistic locking. So I added a version attribute and the optimistic locking works, so that was ...
0
votes
0answers
110 views
hibernate: optimistic concurrency control
I am trying to learn optimistic concurrency control.
The following program
opens a session, creates a row in table : id=1 name = "raj", commits and closes the session
start a thread, that sleeps ...
0
votes
1answer
228 views
Hibernate's StaleObjectStateException still thrown after entity reloaded
I am playing with a standard optimistic concurrency control scenario with extended session / automatic versioning. I have an entity which I load in the first transaction, present to user for ...
0
votes
1answer
397 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
407 views
Hibernate - retrying failed update because of StaleObjectStateException still tries to save the stale instance
I am having trouble with hibernate and versioning. I am using Hibernate 3.6.7-Final. Here is a code snippet from my DAO class (it is called by Spring Beans that use the @Transactional annotations, so ...
0
votes
1answer
208 views
Optimistic locking in web applications
We are building a customer provisioning tool for our multi-tenant application. Multiple users can work on the same configuration and hence we want to avoid conflicts. We know that optimistic locking ...
1
vote
1answer
157 views
Ignore optimistic-locking
I've got the entity that contains @version field.
Sometimes I need to update it in spite of optimistic locking exception.
Can I turn it off somehow in that case? Or I should just reload entity and ...
0
votes
1answer
242 views
@Version in hibernate, when running in cluster env does not work…(Optimistic Lock)
I have an Entity which uses @version on one of its fields, i want to achieve that if two transactions modify this entity in the same time, one will fail(and get Optimistic Lock Exception) and the ...
0
votes
1answer
236 views
How to apply @InitBinder to protect @Version field in a Spring MVC, Hibernate app?
In a Spring 3.1 MVC app with Hibernate 4.1, I am using:
Declarative transaction management
Session per request
Optimistic locking by adding the "version" property in the domain objects
Reattaching ...
3
votes
1answer
526 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]: ...
3
votes
2answers
605 views
Hibernate. Optimistic lock. Selects version even though it generates it
I have an entity:
<class name="name.dargiri.model.Entity" table="ENTITY" optimistic-lock="version">
<version name="version" column="ver" type="long" />
</class
If the Entity is ...
4
votes
1answer
4k views
Optimistic Locking in Hibernate by default
I have one question about optimistic locking in Hibernate. I am trying to go deep inside optimistic locking with Hibernate, but I have one doubt. Hibernate uses version approach (integer or timestamp) ...
1
vote
1answer
650 views
Version not incremented during transaction
I have the following scenario:
transaction begin
person.getVersion() --> returns 0
person.setName("dirty");
session.save(person);
person.getVersion() --> returns 0
session.flush()
...
1
vote
1answer
1k views
Hibernate/JPA @Version and @Generated causing StaleObjectStateException
Using Spring 3.1/JPA 2 provided by Hibernate 4.1.0.
I have a base class for all of my Entities that provides basic audit capabilities (update timestamp, version number etc.) Because other ...
0
votes
2answers
726 views
How to manually set the @Version fields with Hibernate 4?
Environment:
I have that User entity :
@Entity
public class User implements Serializable {
private static final long serialVersionUID = 1L;
@Id
@GeneratedValue(strategy = ...
1
vote
1answer
355 views
When not to use version no in Grails domain Class?
In my previous Grails project(high transaction volume), I had horrifying experience with Stale Object Exceptions with 1 to many and many to many relationships.
I was basically persisting Facebook ...
0
votes
1answer
143 views
Using Hibernate Versioning in a middle class of a hierarchy
I want to use Hibernate Versioning in my application but I have a problem in a class hierarchy like this :
C extends B and B extends A.
I want to use version in Class B and I don’t need to use version ...
0
votes
1answer
231 views
How to prevent StaleObjectStateException on Query.list()?
I use Hibernate optimistic locks in my software (via @Version annotation). It works quite well, but sometimes I get StaleObjectStateException while trying to merely retrieve some objects from ...
2
votes
1answer
269 views
Hibernate: Should I include the 'version' field to hashcode() and equals() methods
I know that when overriding hashcode() and equals() of my persistent entities I should not include ID and only include the meaningful properties that uniquely identify the object.
But what about ...
0
votes
0answers
163 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
...
0
votes
2answers
817 views
Hibernate Optimistic Locking Version overflow
I am using hibernate and a version column is provided for the hibernate locking purposes. The problem is that the app will update an entry often enough that the Java's int limit is reached by the ...
2
votes
1answer
3k views
How to do optimistic locking in hibernate
I am completely new to Hibernate and Spring and in my attempt to learn Spring, Hibernate, Maven etc I only know how to run a hello world example using all of the three. With my basic understanding I ...
3
votes
1answer
2k views
When to explicitly exclude Optimistic Locking (Hibernate)?
Under what circumstances would it be appropriate to explicitly exclude optimistic locking from a @OneToMany relationship via Hibernate?
I have been reading a post on Hibernate which basically says ...
0
votes
1answer
184 views
Using @Version column does not allow @ManyToOne relationship property as a reference
I'm using hibernate 3.6.3.Final. I have two relational entities A & B with a unidirectional ManyToOne defined as:
@Entity public class A {
...
@Version @Column ( name = "ChangeNumber" )
public ...
0
votes
1answer
107 views
Hibernate and “greatest value wins” logic
I have a high_scores table in my database, it has two values:
player_id
highest_score
I need a repository method that saves a new high score. I don't really want to dirty up my code with ...
2
votes
1answer
750 views
Basic question about optimistic lock (Hibernate)
I am new to use "optimistic locking" mechanism - I am using hibernate (in Jboss) and Container Managed Transaction (CMT).
I want to handle the scenario when, between my entity-read and entity-update ...
1
vote
2answers
676 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
909 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 ...
0
votes
1answer
438 views
Version property of Parent isn't incrementing if I update child
I'm using JPA 2 with Hibernate 3.x. I have two Entity objects Foo and Bar and the relation is like this -
@Entity
public class Foo{
@Id
private long id;
@OneToOne(cascade = ...
1
vote
2answers
6k views
Hibernate (JPA): how to handle StaleObjectStateException when several object has been modified and commited
Consider the scenario:
A Db transaction envolving more than one row from different tables with versioning.
For example:
A shopLists and products. Where a shopList may contain products (with their ...
2
votes
1answer
2k views
How to overcome StaleObjectStateException in grails Service
I've introduced a TransactionService that I use in my controllers to execute optimistic transactions. It should
try to execute a given transaction (= closure)
roll it back if it fails and
try it ...
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 ...
1
vote
2answers
689 views
Server-side optimistic locking in a ReSTful app: handling asynchronous requests from the same client
I am working on a project that is in transition from proof-of-concept to something worthy of a pilot project. One of the key improvements for this phase of development is to move away from the current ...
1
vote
0answers
566 views
Grails optimistic locking strange behaviour
I've been trying to make GORM throw an optimistic locking error in an integration test. It has been said before that it is not possible to test for concurrent update errors without resorting to ...
9
votes
1answer
10k views
How to use the Hibernate optimistic locking version property on the front end?
Optimistic locking using the version attribute for an entity works fine and is easy to implement:
<version property="VERSION" type="int" column="EX_VERSION" />
The entity has a property of ...
3
votes
2answers
795 views
Can Hibernate's @Version consider changes in related entities?
I have 2 entities: Parent and Child in a one-to-many relationship. The Parent is versioned, i.e. has a @Version field. My goal is to synchronize changes to both Parent and Child entities on the ...