Hi,
as a newbie of Hibernate and ORM in general I would need to have the behaviour of entity persistance and OpenSessionInView clarified.
I understand that:
- openSessionInViewFilter mantains the same session opened for the lifecycle of the request.
- according to the documentation, I understand that within the same hibernate session objects are persisted automatically, which means with no need to call a persist method (update(), saveOrUpdate(), ..) of the session.
in an environment with openSessionInViewFilter configured I would then call:
Code:
myObj = session.get(Entity, id);
myObj.setSomeThing(someValue);
myObj.getSomeCollection().get(someObjectOfTheCollection).setSomeThing(someValue);
myObj.getSomeCollection().add(newObjectOfTheCollection);
...
and at the end of the request:
myObj would be updated and someCollection would be updated with the new and modified collectionObject
all with no need of touching the session or call a saveOrUpdate().
Is that true?
If it is I wonder about using this pattern in a classic service/DAO configuration:
I have:
Code:
MyObjectDAO{
...
MyObject getMyObject(myObjectId){
// session comes from openSessionInView some how
session.get(MyObject, myObjectId);
}
void removeMyObject(myObject){
// session comes from openSessionInView some how
session.delete(myObject);
}
MyObject persistMyObject(myObject){
// session comes from openSessionInView some how
session.saveOrUpdate(myObject);
}
}
either from my service components or directly from the presentation layer (remembering I am using the OpenSessionInViewFilter), I can then do the following:
in struts (or whatever)
Code:
MyAction {
doStuff(){
myDAO = ctx.getBean("MyObjectDAO"); //with use of Spring, i.e.
myObj = myDAO.get(myObjectId); // or session.get(MyObject, myObjectId), for what it matters..
myObj.setSomeThing(someValue);
myObj.getSomeCollection().get(someObjectOfTheCollection).setSomeThing(someValue);
myObj.getSomeCollection().add(newObjectOfTheCollection);
return mapping.findForward("whatever");
}
}
and magically myObj would be already saved on DB!?
no need to call at the end myDAO.persistMyObject (myObj)??
persist methods ould be then used ONLY across different requests when reattaching entities to hibernate?
This basically is my question, any help appreciated.
Thanks
Francesco[/code]