Tagged Questions
1
vote
1answer
455 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 ...
2
votes
0answers
319 views
How to use optional attributes in web service update messages (DTOs)?
BACKGROUND
Assume you have a (SOAP) web service, BookService, managing books in a library. In the information model assume that the Book entity has the following attributes:
id
author
publisher
...
1
vote
0answers
171 views
Is there a Web Service (WS) Standard for Optimistic Locking?
Is there a Web Service Standard (WS*) for Optimistic Locking / Optimistic Concurrency Control (OCC) designed for interoperability?
There are a number of standards related to pessimistic concurrency ...
2
votes
2answers
596 views
RavenDB UseOptimisticConcurrency in Config?
Is there a way to set optimistic concurrency to true in Raven.Server.exe.config? Or, can it somehow be applied at the database level? On RavenDB's site, I see a couple of mentions of setting ...
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 ...
1
vote
2answers
443 views
Is there an alternative to ISession.Merge() that doesn't throw when using optimistic locking?
I've been trying to use ISession.Merge() to keep coherence between two sessions, but it fails when the merged instance has a higher Version property than the one loaded in the session (with a ...
1
vote
2answers
344 views
nHibernate and concurrency check
I want to achieve concurrency check using nHibernate 3 using UnitOfWork pattern.
To be more precise:
open new session session,
load entity in a session,
close session,
give user some time ...
0
votes
0answers
126 views
Subsonic modified to use ADO transactions and support optimistic locking / concurrency
I'm a big fan of SubSonic, but I have a client that insists on ADO transactions as opposed to the System.Transactions.TransactionScope technique provided out of the box with SubSonic. We also needed ...