Re: Problem with Gilead Integration in GWT, Spring and JPA

2011-03-25 Thread marky8264
the gilead forums may be able to help. On 24/03/11 17:51, marky8264 wrote: thanks for your answer. However, if i use a eager loading for the list, i will get this: Caused by: com.google.gwt.user.client.rpc.SerializationException: Type 'org.hibernate.collection.PersistentBag

Problem with Gilead Integration in GWT, Spring and JPA

2011-03-24 Thread marky8264
hey, I'm a newbie with these frameworks. Firstly i want to write a small web app with gwt for the frontend, spring for backend and jpa for the persistence operations. I use Hibernate as JPA implementation. I started with a simple construction (2 simply entities, 2 DAO,1 remote service). I have no

Re: Problem with Gilead Integration in GWT, Spring and JPA

2011-03-24 Thread marky8264
, you then try and access the collection outside a hibernate session, so it cannot do the load. You should either load what you need inside the hibernate session, or make your collection be non-lazy. On 24/03/11 14:50, marky8264 wrote: hey, I'm a newbie with these frameworks