类 StandardScanOptions
- java.lang.Object
-
- org.hibernate.boot.archive.scan.internal.StandardScanOptions
-
- 所有已实现的接口:
ScanOptions
public class StandardScanOptions extends Object implements ScanOptions
- 作者:
- Steve Ebersole
-
-
构造器概要
构造器 构造器 说明 StandardScanOptions()StandardScanOptions(String explicitDetectionSetting, boolean persistenceUnitExcludeUnlistedClassesValue)
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 booleancanDetectHibernateMappingFiles()Is detection of Hibernate Mapping files allowed?booleancanDetectUnlistedClassesInNonRoot()Is detection of managed classes from non-root urls allowed?booleancanDetectUnlistedClassesInRoot()Is detection of managed classes from root url allowed?
-
-
-
构造器详细资料
-
StandardScanOptions
public StandardScanOptions()
-
StandardScanOptions
public StandardScanOptions(String explicitDetectionSetting, boolean persistenceUnitExcludeUnlistedClassesValue)
-
-
方法详细资料
-
canDetectUnlistedClassesInRoot
public boolean canDetectUnlistedClassesInRoot()
从接口复制的说明:ScanOptionsIs detection of managed classes from root url allowed? In strict JPA sense, this would be controlled by the<exclude-unlisted-classes/>element.- 指定者:
canDetectUnlistedClassesInRoot在接口中ScanOptions- 返回:
- Whether detection of classes from root url is allowed
-
canDetectUnlistedClassesInNonRoot
public boolean canDetectUnlistedClassesInNonRoot()
从接口复制的说明:ScanOptionsIs detection of managed classes from non-root urls allowed? In strict JPA sense, this would always be allowed.- 指定者:
canDetectUnlistedClassesInNonRoot在接口中ScanOptions- 返回:
- Whether detection of classes from non-root urls is allowed
-
canDetectHibernateMappingFiles
public boolean canDetectHibernateMappingFiles()
从接口复制的说明:ScanOptionsIs detection of Hibernate Mapping files allowed?- 指定者:
canDetectHibernateMappingFiles在接口中ScanOptions- 返回:
- Whether detection of Mapping files is allowed.
-
-