Hibernate Lazy initialization exception problem with Gilead in GWT 2.0 integration

2010-05-16 Thread sylvain.saurel
Hello, I use GWT 2.0 as UI layer on my project. On server side, I use Hibernate. For example, this is 2 domains entities that I have : public class User { private CollectionRole roles; @ManyToMany(cascade = CascadeType.ALL, fetch = FetchType.LAZY, mappedBy = users,

Re: GWT 2.0 integration with Spring Security 3.0

2010-05-13 Thread sylvain.saurel
, sylvain.saurel sylvain.sau...@gmail.com wrote: Hello, I used GWT 2.0 since a few days. So, I try to code an basic application with a login form and a page accessible only if i am logged. Usually in my web application with jsf for example, I use Spring Security 3.0 to configure and secure

GWT 2.0 integration with Spring Security 3.0

2010-05-12 Thread sylvain.saurel
Hello, I used GWT 2.0 since a few days. So, I try to code an basic application with a login form and a page accessible only if i am logged. Usually in my web application with jsf for example, I use Spring Security 3.0 to configure and secure that kind of application. So, I decided to try to do