zoukankan      html  css  js  c++  java
  • hibernate 中的 lazy=”proxy” 和 lazy=”no-proxy” 的区别

    Child   <-   many-to-one   ->Parent   
        
      class   Child   {   
          private   Parent   parent;   
        
          public   Parent   getParent   (){   
              return   this.parent;//访问了实例变量   
          }   
            
      }   
        
      class   Parent   {   
          private   String   name;   
        
          public   String   getName(){   
              return   this.name;//访问了实例变量   
          }   
        
          public   void   f(){   
              System.out.println("invokeing   f()");//没有访问实例变量   
          }   
      }   
        
      如果   many-to-one  
    的lazy设为proxy,当child.getParent().getName()或child.getParent().f()时,parent都
    会被抓取,若设为no-proxy,调用child.getParent().f()时,parent是不会被抓取的,同时这种方式需要编译时字节码增
    强,否则和proxy没区别。

    https://www.cnblogs.com/lizeyang/

  • 相关阅读:
    sqlserver2005转换到2000
    vs2008的注册
    给联想K46装系统
    两个调片技巧
    mapx集合的问题
    audio player播放多文件
    JQuery查询ul嵌套结构中当前所处的位置
    .Net中使用带UI的OCX的方法
    U盘启动和量产
    winrar的图标
  • 原文地址:https://www.cnblogs.com/lizeyang/p/5839894.html
Copyright © 2011-2022 走看看