类的使用
org.hibernate.annotations.FetchMode
-
使用FetchMode的程序包 程序包 说明 org.hibernate.annotations Package containing all the Hibernate specific annotations. -
-
org.hibernate.annotations中FetchMode的使用
返回FetchMode的org.hibernate.annotations中的方法 修饰符和类型 方法 说明 FetchModefetch()If set to JOIN, the default, Hibernate will use an inner join to retrieve a secondary table defined by a class or its superclasses and an outer join for a secondary table defined by a subclass.FetchModemode()The fetch mode to apply to the association.FetchModevalue()The style of fetch to use.static FetchModeFetchMode. valueOf(String name)返回带有指定名称的该类型的枚举常量。static FetchMode[]FetchMode. values()按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。
-