Tagged Questions
2
votes
1answer
166 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 ...
1
vote
1answer
337 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 ...