Tagged Questions
0
votes
1answer
55 views
JPA2.0: Semantic of OPTIMISTIC_FORCE_INCREMENT
I'm quite new to JPA and read this article about locking modes in JPA2.0, which left me with a question regarding the LockModeType.OPTIMISTIC_FORCE_INCREMENT.
Here is an image with an example from ...
1
vote
0answers
186 views
OptimisticLockException not thrown when version has changed
I've created a simple EJB application that uses JPA for persistence and have a problem whereby optimistic locking is not functioning as I would have expected.
The application contains a class named ...
0
votes
1answer
326 views
How to throw OptimisticLockException with hibernate-jpa2.0
I'm currently working on an optimistic-locking management in my project.
We use JPA 2.0 (hibernate-jpa2.0-api-1.0.1.Final) and the datasource is provided by JBoss 7.
What I did
In my entity ...
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
728 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 = ...
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
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
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 ...