Tagged Questions
0
votes
1answer
73 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 = ...
1
vote
2answers
69 views
JPA: OptimisticLockException and Cascading
In my current project I use Spring Data JPA with Hibernate but consider this as a more general question that should also cover "plain" JPA.
I'm uncertain how I should deal with ...
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, ...
1
vote
1answer
57 views
Some special case of Eclipselink JPA optimistic locking
I am starting with a JPA optimistic locking. I need to achieve the following scenario.
User place some Request for consideration. This request has a status property. While being just put it has a ...
0
votes
1answer
97 views
Does optimistic locking prevent blocking in JPA?
I am a bit confused on the benefits of optimistic locking in JPA.
I conducted a test with two threads and a single row on a versioned entity table.
Here is what I have found:
T1: begin tran
T1: ...
1
vote
2answers
98 views
How to efficiently lock a code block in order to avoid optimistic lock exception
I am not very experienced with Multithreading in Java. What I want is to set a lock for a code block. In my case i want to avoid optimistic lock exceptions, while doing some synchronization for a ...
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();
...
2
votes
1answer
170 views
EJB - Using an EntityManager - Can finding an entity cause an OptimisticLockException
Unfortunately I'm getting an OptimisticLockException in my code and I'm not sure why. Perhaps there is someone who can help me with an answer to a general question.
Following scenario:
@Entity
...
0
votes
1answer
27 views
What does Stateless bean operate with EntityManageer that could resolve the issue with “user-think-time”
Reading these notes. On the EBean site page. There is a paragraph that contains:
"The natural way to manage the EntityManager with a EJB3 container is
to use a Stateful Session Bean."
Also ...
2
votes
1answer
66 views
Table indexes/pk for Optimistic Locking in JPA
What is the best practice for defining table indexes for entities supporting optimistic locking?
For sure, entity id has to be part of some index in DB to enable fast lookups by id. What about ...
1
vote
2answers
108 views
How to catch OptimisticLockException in JavaEE 6?
I wonder what is the best way to catch an OptimisticLockException in JavaEE 6. I have the following EJB:
@Stateless
public class SeminarBooking {
public void bookSeminar(Long seminarId, int ...
0
votes
1answer
74 views
Optimistic Locking : Two fields that need to be updated
In our old db strukture we have two fields in one table that get updated when we change data.
create table dbo.example(
name varchar(50),
...,
changed smalldatetime, -- here we save the ...
1
vote
1answer
463 views
JPA - @Version - increase on read
I have implemented a simple entity ejb with a @version annotation. I expect that the version number will increase after each update of an entity.
@Version
public Integer getVersion() {
return ...
3
votes
1answer
640 views
JPA: How does Read Lock work?
I am trying to understand whats the effect of calling EntityManager.lock(entity, LockModeType.READ). The API documentation sounds very confusing for me.
If I have to concurrent threads and Thread 1 ...
1
vote
1answer
654 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 ...
1
vote
1answer
499 views
Determine Which Entity Caused an Optimistic Lock Exception
I have a web application implemented in JSF and JPA. In the UI, the users can updated a bunch of different entities before choosing to "save" the entire operation. During the save operation, if two ...
2
votes
1answer
483 views
JPA: Setting @JoinColumn(updatable = false) to avoid OptimisticLockException
Given the following the following two entities
@Entity
public class A {
@Version
protected int version;
String basicPropertey;
// getter and setter for basicProperty
}
@Entity
public class ...
2
votes
1answer
751 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 ...
0
votes
1answer
179 views
openjpa throws optimisticklockexception
I am trying openjpa and jpa. All I have is one entity class as corresponding table in the database. one of the attributes of the entity is username and corresponding row in the db table has ...
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
1answer
837 views
JPA optimistic lock version handling - version value should be carried onto client side or?
I'm wondering how to handle optimistic lock version property in entity class using JPA (toplink essentials) from server to client and vice versa.
Here is the scenario.
From browser user send ...
1
vote
4answers
575 views
Is it possible to column-level optimistic locking in JPA toplink?
I studied about optimistic locking in JPA, adding @Version annotation with version column in DB and how it is managed by EntityManager etc
The doc says (in my own word) optimistic lock is effective ...
1
vote
1answer
339 views
how to raise OptimisticLockException
Unable to catch optimistic lock exception.
one way to raise OptimisticLockException is by using em.flush()
try{
//some enitity
em.flush()
}
catch(OptimisticLockException ole){}
but i dont ...
1
vote
2answers
691 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 ...
3
votes
2answers
418 views
How should I handle persistence in a Java MUD? OptimisticLockException handling
I'm re-implementing a old BBS MUD game in Java with permission from the original developers. Currently I'm using Java EE 6 with EJB Session facades for the game logic and JPA for the persistence. A ...
1
vote
1answer
57 views
Defines JPA behavior for setting same value again?
I wonder, if there is any definition by JPA for the behavior, if you setting equals value for any property. I didn't find any words in the specification.
I've tested with TopLink Essentials and ...
