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/LazyInitializationException.html Thanks. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3959370#3959370 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3959370 _______________________________________________ jboss-user mailing list [email protected] https://lists.jboss.org/mailman/listinfo/jboss-user
