19.1.7. 使用延迟属性抓取(Using lazy property fetching)

Hibernate3对单独的属性支持延迟抓取,这项优化技术也被称为组抓取(fetch groups)。 请注意,该技术更多的属于市场特性。在实际应用中,优化行读取比优化列读取更重要。但是,仅载入类的部分属性在某些特定情况下会有用,例如在原有表中拥有几百列数据、数据模型无法改动的情况下。

可以在映射文件中对特定的属性设置lazy,定义该属性为延迟载入。

  1. <class name="Document">
  2. <id name="id">
  3. <generator class="native"/>
  4. </id>
  5. <property name="name" not-null="true" length="50"/>
  6. <property name="summary" not-null="true" length="200" lazy="true"/>
  7. <property name="text" not-null="true" length="2000" lazy="true"/>
  8. </class>

属性的延迟载入要求在其代码构建时加入二进制指示指令(bytecode instrumentation),如果你的持久类代码中未含有这些指令, Hibernate将会忽略这些属性的延迟设置,仍然将其直接载入。

你可以在Ant的Task中,进行如下定义,对持久类代码加入“二进制指令。”

  1. <target name="instrument" depends="compile">
  2. <taskdef name="instrument" classname="org.hibernate.tool.instrument.InstrumentTask">
  3. <classpath path="${jar.path}"/>
  4. <classpath path="${classes.dir}"/>
  5. <classpath refid="lib.class.path"/>
  6. </taskdef>
  7. <instrument verbose="true">
  8. <fileset dir="${testclasses.dir}/org/hibernate/auction/model">
  9. <include name="*.class"/>
  10. </fileset>
  11. </instrument>
  12. </target>

还有一种可以优化的方法,它使用HQL或条件查询的投影(projection)特性,可以避免读取非必要的列, 这一点至少对只读事务是非常有用的。它无需在代码构建时“二进制指令”处理,因此是一个更加值得选择的解决方法。

有时你需要在HQL中通过抓取所有属性,强行抓取所有内容。