Interface HibernateOrmConfigPersistenceUnit.HibernateOrmConfigPersistenceUnitMapping
- Enclosing interface:
HibernateOrmConfigPersistenceUnit
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic interfacestatic interfacestatic interface -
Method Summary
Modifier and TypeMethodDescriptionThe preferred JDBC type to use for storing boolean values.duration()id()Optimizer configuration.The preferred JDBC type to use for storingInstantvalues.default booleantimezone()Timezone configuration.The preferred JDBC type to use for storingUUIDvalues.
-
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 storingInstantvalues.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 storingUUIDvalues.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()
-