• hibernate 中 fetch=FetchType.LAZY 懒加载失败处理


      对这种懒加载问题,最后的做法是利用Spring提供的一个针对Hibernate的一个支持类,其主要意思是在发起一个页面请求时打开Hibernate的Session,一直保持这个Session,使得Hibernate的Session的生命周期变长,直到这个请求结束,具体是通过一个Filter来实现的。 那么,如果现在我们想用Hibernate懒加载特性,又想用延长session的生命周期,知道将数据提到页面显示(经过action层),那么我们就得在web.xml文件中增加以下配置:

        <!-- 配置Spring的用于解决懒加载问题的过滤器 -->  
         <filter>  
            <filter-name>OpenSessionInViewFilter</filter-name>  
            <filter-class>org.springframework.orm.hibernate3.support.OpenSessionInViewFilter</filter-class>  
         </filter>  
         <filter-mapping>  
            <filter-name>OpenSessionInViewFilter</filter-name>  
            <url-pattern>*.action</url-pattern>  
         </filter-mapping>  
    

      注:1)OpenSessionInViewFilter为过滤器名字,*.action表示拦截所有的action,也可以 /*

        2)非 web 页面请求(如定时任务)可以按下面的方式进行处理(Hibernate.initialize(Object proxy) 方法强制加载这样就相当于动态改变为lazy=fals)

    /**
     * @Author masl - 2017/9/28 14:22
     * @param setRepaymentId
     * @param initSubs :是否初始化关联表数据
     * @return
     */
    @Override
    public SetRepayment findSetRepaymentById(Integer setRepaymentId, boolean initSubs) {
        SetRepayment setRepayment = null;
        if (setRepaymentId != null) {
            setRepayment = setRepaymentDao.get(setRepaymentId);
            if (setRepayment != null && initSubs) {
                Hibernate.initialize(setRepayment.getSetIncomes());
            }
            return setRepayment;
        }
        return null;
    }
    

      

  • 相关阅读:
    GridView合并行代码
    GridView合并行头代码
    Javascript 的几种写法与提示
    [转] 浅谈MSSQL锁机制
    Two ways of using memory: Stack and Heap
    You have to know how .Net code "managed"?
    Sql Server Profiler
    InterProcess Communication
    database Index
    敏捷开发
  • 原文地址:https://www.cnblogs.com/shanlin/p/7609589.html
Copyright © 2020-2023  润新知