hbm相当于hibernate 5.1.0中的@LazyGroup

时间:2016-04-15 12:13:16

标签: hibernate

Hibernate 5.1具有为延迟字段指定提取组的选项。 (当然这需要字节码增强)。有文档显示如何使用@LazyGroup指定获取组但在hbm中找不到任何标记延迟组的内容。

@Basic( fetch = FetchType.LAZY )
@LazyGroup( "lobs" )
private String name;

hbm : <property name="name" type="string" lazy="true" ???="lobs">
<column name="name" />
</property>

要替换“???”的属性名称是什么?。 lazygroup =“lobs”不起作用。

1 个答案:

答案 0 :(得分:0)