> I'm using Spring therefore I tried to configure the > OpenEntityManagerInViewInterceptor, if this works as it's supposed to > I shouldn't get JDODetachedFieldAccessException anymore, but I still > get it.
And what state are the objects in when you access the field ? detached ? and what PersistenceContext is used ? As per http://www.datanucleus.org/products/accessplatform_2_0/jpa/object_lifecycle.html DataNucleus 1.x supports "Transaction" out of the box (whereas DataNucleus 2.x supports both). You could easily use the persistence properties datanucleus.DetachAllOnCommit = false datanucleus.DetachOnClose=true if you wanted Extended. -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine-java?hl=en.
