简体   繁体   English

Spring 3 + LazyInitializationException + OpenSessionInViewFilter

[英]Spring 3 + LazyInitializationException + OpenSessionInViewFilter

I'm having some problems with Spring 3, with annotations and hibernate. 我在Spring 3中遇到了一些问题,带有注释和休眠状态。

Im trying to execute this in a JSP that will be included in all the others JSPs, its a header. 我试图在将包含在所有其他JSP中的JSP中执行此操作,它是一个标头。

${pageContext['request'].userPrincipal.principal.notifications}

My User pojo have a relation with notifications like this 我的用户pojo与这样的通知有关

    @OneToMany(mappedBy="user", fetch = FetchType.LAZY)
    protected Collection<Notification> notifications;

If I call getNotifications from a Controller or Service correctly annotated, I have no problems, but when i'm trying to execute the code insede a JSP, I received a LazyInitializationException like this one : 如果我从带有正确注释的Controller或Service调用getNotifications,那么我没有问题,但是当我尝试在JSP中执行代码时,我收到了像这样的LazyInitializationException:

org.hibernate.LazyInitializationException: failed to lazily initialize a 
     collection of role: org.prog.para.model.pojo.user.User.notifications, no session or 
     session was closed

I read about the OpenSessionInViewFilter but i don't know why it does not work. 我读到有关OpenSessionInViewFilter的信息,但我不知道为什么它不起作用。

my web.xml : 我的web.xml:

<filter>
    <filter-name>OpenSessionInViewFilter</filter-name>
    <filter-class>org.springframework.orm.hibernate3.support.OpenSessionInViewFilter</filter-class>
    <init-param>
        <param-name>singleSession</param-name>
        <param-value>true</param-value>
    </init-param>
</filter>
<filter-mapping>
    <filter-name>OpenSessionInViewFilter</filter-name>
    <url-pattern>/*</url-pattern>
</filter-mapping>

<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>
        /WEB-INF/spring/app-config.xml
        /WEB-INF/spring/security-config.xml
    </param-value>
</context-param>
<context-param>
    <param-name>defaultHtmlEscape</param-name>
    <param-value>true</param-value>
</context-param>

<servlet>
    <servlet-name>para-mvc</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/spring/mvc-config.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
    <servlet-name>para-mvc</servlet-name>
    <url-pattern>/</url-pattern>
</servlet-mapping>

<filter>
    <filter-name>springSecurityFilterChain</filter-name>
    <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
</filter>
<filter-mapping>
    <filter-name>springSecurityFilterChain</filter-name>
    <url-pattern>/*</url-pattern>
</filter-mapping>

<filter>
    <filter-name>CharacterEncodingFilter</filter-name>
    <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
    <init-param>
        <param-name>encoding</param-name>
        <param-value>UTF-8</param-value>
    </init-param>
    <init-param>
        <param-name>forceEncoding</param-name>
        <param-value>true</param-value>
    </init-param>
</filter>
<filter-mapping>
    <filter-name>CharacterEncodingFilter</filter-name>
    <url-pattern>/*</url-pattern>
</filter-mapping>

<servlet-mapping>
    <servlet-name>default</servlet-name>
    <url-pattern>/static/*</url-pattern>
</servlet-mapping>

my app-config.xml file is : 我的app-config.xml文件是:

<context:component-scan base-package="org.prog.para">
    <context:exclude-filter expression="org.springframework.stereotype.Controller" type="annotation" />
</context:component-scan>

<!-- Datasource -->
<import resource="ds-config.xml" />

<bean id="sessionFactory"
    class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
    <property name="dataSource" ref="dataSource" />
    <property name="packagesToScan" value="org.prog.para.model.pojo" />
    <property name="hibernateProperties">
        <props>
            <prop key="hibernate.dialect">org.hibernate.dialect.PostgreSQLDialect</prop>
            <prop key="hibernate.default_schema">schema</prop>
            <prop key="hibernate.show_sql">true</prop>
        </props>
    </property>
</bean>

<bean id="hibernateTransactionManager"
    class="org.springframework.orm.hibernate3.HibernateTransactionManager">
    <property name="sessionFactory" ref="sessionFactory" />
</bean>

<tx:annotation-driven transaction-manager="hibernateTransactionManager"
    proxy-target-class="true" mode="proxy" />


<bean id="emailTemplateResolver" class="org.thymeleaf.templateresolver.ServletContextTemplateResolver">
    <property name="prefix" value="/WEB-INF/views/templates/" />
    <property name="suffix" value=".html" />
    <property name="characterEncoding" value="UTF-8" />
    <property name="order" value="1" />
</bean>

<bean id="templateEngine" class="org.thymeleaf.spring3.SpringTemplateEngine">
    <property name="templateResolvers" ref="emailTemplateResolver" />
</bean>

<bean id="viewResolver" class="org.thymeleaf.spring3.view.ThymeleafViewResolver">
    <property name="templateEngine" ref="templateEngine" />
    <property name="characterEncoding" value="UTF-8" />
</bean>


<bean id="springApplicationContext" class="org.prog.para.config.SpringApplicationContext" />

Anyone knows where's my fail? 谁知道我的失败在哪里? I don't understand why my session is closed when the view is being executed. 我不明白为什么在执行视图时关闭我的会话。

I could solve it putting FetchType.EAGER on notifications collection, but it's not what i want. 我可以解决,将FetchType.EAGER放在通知集合上,但这不是我想要的。 I need it to be a lazy relation. 我需要成为一个懒惰的关系。

Thanks in advance ! 提前致谢 !

I think that a problem can be in that you are using both OpenSessionInViewInterceptor and OpenSessionInViewFilter . 我认为问题可能在于您同时使用OpenSessionInViewInterceptorOpenSessionInViewFilter Try to remove one of them. 尝试删除其中之一。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM