The LazyInitializationException normally appears when your hibernate session is closed and
you are trying to use a property or calling a getter on that detached object.
Try initializing the object using Hibernate.initialize method or close the session (some
how) after rendering the JSP.
Here is the definition of the exception:
http://www.hibernate.org/hib_docs/v3/api/org/hibernate/LazyInitialization...
Thanks.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3959370#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...