Uses of Interface
org.hibernate.generator.OnExecutionGenerator
Packages that use OnExecutionGenerator
Package
Description
This package and its subpackages, especially
org.hibernate.id.enhanced
,
contain the built-in id generators, all of which implement either
IdentifierGenerator
or
PostInsertIdentifierGenerator
.Defines support for performing mutation operations originating
from persistence-context events.
This package contains helper classes for rendering SQL fragments and SQL statements.
-
Uses of OnExecutionGenerator in org.hibernate.generator.internal
Classes in org.hibernate.generator.internal that implement OnExecutionGeneratorModifier and TypeClassDescriptionclass
Value generation strategy which produces a timestamp using the databasecurrent_timestamp
function or the JVM current instant.class
ForGeneratedColumn
.class
A fairly genericOnExecutionGenerator
which marks a property as generated in the database with semantics given explicitly by a@Generated
annotation. -
Uses of OnExecutionGenerator in org.hibernate.id
Subinterfaces of OnExecutionGenerator in org.hibernate.idModifier and TypeInterfaceDescriptioninterface
The counterpart toIdentifierGenerator
for values generated by the database.Classes in org.hibernate.id that implement OnExecutionGeneratorModifier and TypeClassDescriptionclass
Deprecated, for removal: This API element is subject to removal in a future version.class
AnOnExecutionGenerator
that handlesIDENTITY
/"autoincrement" columns on those databases which support them.class
Generator that picks a strategy based on the dialect.class
A generator thatselect
s the just-insert
ed row to determine the column value assigned by the database. -
Uses of OnExecutionGenerator in org.hibernate.persister.entity.mutation
Methods in org.hibernate.persister.entity.mutation with parameters of type OnExecutionGeneratorModifier and TypeMethodDescriptionprotected void
AbstractMutationCoordinator.handleValueGeneration
(AttributeMapping attributeMapping, MutationGroupBuilder mutationGroupBuilder, OnExecutionGenerator generator) -
Uses of OnExecutionGenerator in org.hibernate.sql
Methods in org.hibernate.sql with parameters of type OnExecutionGeneratorModifier and TypeMethodDescriptionInsert.addGeneratedColumns
(String[] columnNames, OnExecutionGenerator generator)
PostInsertIdentifierGenerator
andBulkInsertionCapableIdentifierGenerator
, or even better, simply implementOnExecutionGenerator
directly.