Interface HibernateOrmConfigPersistenceUnit.HibernateOrmConfigPersistenceUnitMapping

Enclosing interface:
HibernateOrmConfigPersistenceUnit

public static interface HibernateOrmConfigPersistenceUnit.HibernateOrmConfigPersistenceUnitMapping
Mapping-related configuration.
  • Method Details

    • timezone

      Timezone configuration.
    • id

      Optimizer configuration.
    • duration

    • instantPreferredJdbcType

      @WithName("instant.preferred-jdbc-type") @ConfigDocDefault("TIMESTAMP") Optional<@WithConverter(io.quarkus.runtime.configuration.TrimmedStringConverter.class) String> instantPreferredJdbcType()
      The preferred JDBC type to use for storing Instant values.

      Can be overridden locally using `@JdbcType`, `@JdbcTypeCode`, and similar annotations.

      Can also specify the name of the SqlTypes constant field, for example, `quarkus.hibernate-orm.mapping.type.preferred_instant_jdbc_type=TIMESTAMP` or `quarkus.hibernate-orm.mapping.type.preferred_instant_jdbc_type=INSTANT`.

    • booleanPreferredJdbcType

      @WithName("boolean.preferred-jdbc-type") @ConfigDocDefault("BOOLEAN") Optional<@WithConverter(io.quarkus.runtime.configuration.TrimmedStringConverter.class) String> booleanPreferredJdbcType()
      The preferred JDBC type to use for storing boolean values.

      Can be overridden locally using `@JdbcType`, `@JdbcTypeCode`, and similar annotations.

      Can also specify the name of the SqlTypes constant field, for example, `quarkus.hibernate-orm.mapping.type.boolean_jdbc_type=BIT`.

    • UUIDPreferredJdbcType

      @WithName("uuid.preferred-jdbc-type") @ConfigDocDefault("UUID") Optional<@WithConverter(io.quarkus.runtime.configuration.TrimmedStringConverter.class) String> UUIDPreferredJdbcType()
      The preferred JDBC type to use for storing UUID values.

      Can be overridden locally using `@JdbcType`, `@JdbcTypeCode`, and similar annotations.

      Can also specify the name of the SqlTypes constant field, for example, `quarkus.hibernate-orm.mapping.type.uuid_jdbc_type=CHAR`.

    • isAnyPropertySet

      default boolean isAnyPropertySet()