Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am loading some hibernate objects through hibernate search and then showing them in the UI. There, our user selects one object and removes some elements from a @ManyToMany association.

Of course, as written in the hibernate documentation when the session is flushed, changes are persisted automatically even if I don't call Session#save in the object found.

But that is not the behavior I need. I need my user to remove the objects from the association but only temporally, only for making a report from the modified object without changing my database. So the removed objects in the association do not show in my report.

How can I make this happen?

I was thinking in mark the associated objects as Cloneable and build a new entity and make changes there as all the operation in this particular UI are read-only.

Any suggestions?

share|improve this question

1 Answer

up vote 1 down vote accepted

Mark the collection with cascade="evict". Then remove the objects as you like, generate your report, then evict() the object before flushing.

share|improve this answer
Just a note, I am using hibernate 3.6 so is CascadeType.DETACH instead of Evict. – mael Jul 11 '12 at 19:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.