我必须在非 Web 应用程序中使用 OpenSessionInViewInterceptor。我已将 OSV 拦截器配置如下,
<bean id="openSessionInViewInterceptor" class="org.springframework.orm.hibernate3.support.OpenSessionInViewInterceptor">
<property name="sessionFactory"><ref bean="sessionFactory"/></property>
</bean>
我得到一个延迟加载异常。任何指向我哪里出错的指针?配置是否正确?
还是非 Web 应用程序需要 OpenSessionInViewFilter 而不是拦截器?
谢谢!