I had the (in)famous problem with hibernate and lazy loading when views are rendered.... As many say, the only two solutions are:
The latter is preferable IMO. Anyway I'm not sure if this interceptor is firing at all (in fact I get the same Lazy loading exception and nothing changes):
org.hibernate.LazyInitializationException: failed to lazily initialize a collection of role: it.jsoftware.jacciseweb.beans.Listino.prodotti, no session or session was closed
I'm using simple annotation based url mappings, so reading the docs for Spring 3, I'm using this in my servlet-context.xml:
<bean id="handlerMapping"
class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping">
<!-- <property name="order" value="2" /> -->
<property name="interceptors">
<list>
<ref bean="openSessionInViewInterceptorInst" />
</list>
</property>
</bean>
Which should make the trick. But it is not working and I get the exception. How do I make sure my interceptor is firing? How do I solve this?
Are you using the @RequestMapping annotation? If I remember right there was an issue with putting the interceptor on the url bean. With Spring 3.0 you can define the interceptor like this:
<mvc:interceptors>
<bean class="org.springframework.orm.hibernate3.support.OpenSessionInViewInterceptor">
<property name="sessionFactory">
<ref local="sessionFactory" />
</property>
</bean>
</mvc:interceptors>
assuming that sessionFactory is a reference to your SessionFactory bean.
You will also need to include the mvc namespace.
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd"
Try using <mvc:interceptors>
.
By the way, @Transactional
is a different thing - it doesn't make your collections work in the "view". It just opens a transaction (and a session) for the annotated method (and the methods it calls)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With