On Feb 7, 8:17 am, PierreR <[email protected]> wrote: > I can be a little more precise here. > > GWT 2.0 will probably correctly serialize enhanced classes. But there > are case such as for List where Hibernate uses a PersistentBag to > implement List.
Hibernate doesn't do "enhanced classes", or rather it does it "on the fly". That's why (AFAIK) Gilead or similar solutions are needed. If you wonder what "enhanced classes" then means, have a look at DataNucleus: http://www.datanucleus.org/products/accessplatform/bytecode_enhancement.html DataNucleus uses a simple ArrayList, which GWT knows how to serialize. I just did a prototype with DataNucleus (JDO though, not JPA, but it makes no difference in DataNucleus actually) and it "just works". I've never used Hibernate in a "GWT context" though, so I cannot compare. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" 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-web-toolkit?hl=en.
