接口 MappingDefaults

  • 所有已知实现类:
    MetadataBuilderImpl.MappingDefaultsImpl, OverriddenMappingDefaults

    public interface MappingDefaults
    Defines a (contextual) set of values to use as defaults in the absence of related mapping information. The context here is conceptually a stack. The "global" level is configuration settings.
    从以下版本开始:
    5.0
    作者:
    Steve Ebersole, Gail Badner
    • 字段详细资料

      • DEFAULT_IDENTIFIER_COLUMN_NAME

        static final String DEFAULT_IDENTIFIER_COLUMN_NAME
        另请参阅:
        常量字段值
      • DEFAULT_TENANT_IDENTIFIER_COLUMN_NAME

        static final String DEFAULT_TENANT_IDENTIFIER_COLUMN_NAME
        另请参阅:
        常量字段值
      • DEFAULT_DISCRIMINATOR_COLUMN_NAME

        static final String DEFAULT_DISCRIMINATOR_COLUMN_NAME
        另请参阅:
        常量字段值
      • DEFAULT_PROPERTY_ACCESS_NAME

        static final String DEFAULT_PROPERTY_ACCESS_NAME
        另请参阅:
        常量字段值
    • 方法详细资料

      • getImplicitSchemaName

        String getImplicitSchemaName()
        Identifies the database schema name to use if none specified in the mapping.
        返回:
        The implicit schema name; may be null
      • getImplicitCatalogName

        String getImplicitCatalogName()
        Identifies the database catalog name to use if none specified in the mapping.
        返回:
        The implicit catalog name; may be null
      • shouldImplicitlyQuoteIdentifiers

        boolean shouldImplicitlyQuoteIdentifiers()
        Should all database identifiers encountered in this context be implicitly quoted? true indicates that all identifier encountered within this context should be quoted. false indicates indicates that identifiers within this context are onl;y quoted if explicitly quoted.
        返回:
        true/false
      • getImplicitIdColumnName

        String getImplicitIdColumnName()
        Identifies the column name to use for the identifier column if none specified in the mapping.
        返回:
        The implicit identifier column name
      • getImplicitTenantIdColumnName

        String getImplicitTenantIdColumnName()
        Identifies the column name to use for the tenant identifier column if none is specified in the mapping.
        返回:
        The implicit tenant identifier column name
      • getImplicitDiscriminatorColumnName

        String getImplicitDiscriminatorColumnName()
        Identifies the column name to use for the discriminator column if none specified in the mapping.
        返回:
        The implicit discriminator column name
      • getImplicitPackageName

        String getImplicitPackageName()
        Identifies the package name to use if none specified in the mapping. Really only pertinent for hbm.xml mappings.
        返回:
        The implicit package name.
      • isAutoImportEnabled

        boolean isAutoImportEnabled()
        Is auto-importing of entity (short) names enabled?
        返回:
        true if auto-importing is enabled; false otherwise.
      • getImplicitCascadeStyleName

        String getImplicitCascadeStyleName()
        Identifies the cascade style to apply to associations if none specified in the mapping.
        返回:
        The implicit cascade style
      • areEntitiesImplicitlyLazy

        boolean areEntitiesImplicitlyLazy()
        Identifies whether singular associations (many-to-one, one-to-one) are lazy by default if not specified in the mapping.
        返回:
        The implicit association laziness
      • areCollectionsImplicitlyLazy

        boolean areCollectionsImplicitlyLazy()
        Identifies whether plural attributes are lazy by default if not specified in the mapping.
        返回:
        The implicit association laziness
      • getImplicitCacheAccessType

        AccessType getImplicitCacheAccessType()
        The cache access type to use if none is specified
        返回:
        The implicit cache access type.