Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
1answer
190 views

How does one gracefully merge object graphs after NHibernate StaleObjectStateException?

We are trying to combine objects after a StaleObjectStateException has been thrown to save a merged copy. Here's our environmental situation: List item Multi-user system WPF Desktop application, ...
5
votes
4answers
2k views

StaleObjectstateException row was updated or deleted by

I am getting this exception in a controller of a web application based on spring framework using hibernate. I have tried many ways to counter this but could not resolve it. In the controller's ...
3
votes
1answer
299 views

Where to handle StaleObjectStateException in asp.net mvc application?

Hi I'm using Session per Request pattern. Transactions are managed automatically. How can I easily handle StaleObjectStateException and show some specific view?
3
votes
4answers
542 views

What is stale state?

I was reading about the object pool pattern on Wikipedia (http://en.wikipedia.org/wiki/Object_pool) and it mentions "dangerously stale state". What exactly is "stale" state? I know state is ...
2
votes
1answer
54 views

StaleObjectStateException after refreshing object

When I try to commit my session and another user also changed that same object, then Hibernate throws a StaleObjectStateException. When I try to recover from that exception I call: ...
2
votes
2answers
607 views

In grails, why do I get a StaleObjectStateException directly after refresh?

I got code like this: def myObject = MyDomainClass.get(myId) myObject.refresh() myObject.myProperty = myValue myObject.save(flush:true, failOnError:true) Despite of the get and the refresh, I ...
2
votes
2answers
1k views

Hibernate - StaleObjectStateException in query possible?

Is it possible to get a StaleObjectStateException with Hibernate when you do the same query twice inside one tx if the result data of that query gets changed by a concurrent update inside a different ...
1
vote
1answer
140 views

Avoid StaleObjectStateException when deleting entity

I have 2 concurrent threads that at the same time enter a (Spring) transaction service. Using Hibernate, the service method loads some entities, processes those, finds one and deletes it from the DB. ...
1
vote
2answers
946 views

How to detect transaction conflicts with Hibernate?

I am using Hibernate 2.6 with hibernate-entitymanager. I am trying to catch and handle situations when 2 transactions conflict on an object. Here is what happens: Two threads are updating a single ...
0
votes
1answer
31 views

Constraint Violation Handling in Winforms Using NHibernate

I would like to handle the case where a user is editing an object from a database in a Windows Forms application, makes an edit that would violate a database constraint (i.e. column unique value), ...
0
votes
0answers
28 views

Named query returning stale results

The application I'm developing executes a very long operation on the database. The operation involves inserting from thousands to millions of records. That part is running correctly. However, in order ...
0
votes
0answers
81 views

StaleObjectStateException - for all read operations?

I am working on an appfuse project with underlying Spring and Hibernate application. My application has a page, which gets a lot of concurrent hits. I have a method in the controller class that uses ...
0
votes
1answer
198 views

Handling Hibernate Exceptions in Spring Declarative Transaction Management

I have used PROPAGATION_REQUIRED declarative transaction management approach for my Spring+Hibernate+Struts application. I can catch the StaleObjectException(intended) in the place where the service ...
0
votes
3answers
116 views

How should NHibernate update properties mapped as Version

Using fluent NHibernate I have a property on a class mapped using Version Version(x => x.Version); When I save the object, the Version property gets incremented in the database as I would ...