Orchestra with Request Scope

2008-03-29 Thread Cagatay Civici
Hi, I'm trying to integrate Orchestra to an existing application. I wonder sth about orchestra and request scope. In my app, there is an org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter that binds an entityManager to each request. With Orchestra do I really have to remove

Re: Orchestra with Request Scope

2008-03-29 Thread Mario Ivankovits
managed request scope too Ciao, Mario

Re: Orchestra with Request Scope

2008-03-29 Thread Bernhard Huemer
the database as the ORM PersistenceContext caches the data. If you change data this is something you would like to have to utilize optimistic locking. If it is just to output data you then have to clear() the persistence context before fetching new data. Probably we should add an Orchestra managed request

Re: Orchestra with Request Scope

2008-03-29 Thread Cagatay Civici
caches the data. If you change data this is something you would like to have to utilize optimistic locking. If it is just to output data you then have to clear() the persistence context before fetching new data. Probably we should add an Orchestra managed request scope too Ciao

Re: Orchestra with Request Scope

2008-03-29 Thread Cagatay Civici
. Probably we should add an Orchestra managed request scope too Ciao, Mario