Hi,
my java skills are a bit rusty and I'm wondering how I can implement Open Session In View pattern for the PersistenceManager called from a servlet in a google app engine environment.
I have some singleton which handles the PersistenceManagerFactory, but how can I get a "new" PersistenceManager at each servlet call ?
I want my business class to access some repository that will use the same PersistenceManager, and that all the time (within one servlet request).
For now, I can't figure out how to initialize a new PersistenceManager when the first call to the singleton is made, for each servlet request...
Thanks in advance for any help.