Uses of Interface
org.hibernate.id.PostInsertIdentifierGenerator
-
Packages that use PostInsertIdentifierGenerator Package Description org.hibernate.id This package and its subpackages, especiallyorg.hibernate.id.enhanced
, contain the built-in id generators, all of which implement eitherIdentifierGenerator
orPostInsertIdentifierGenerator
. -
-
Uses of PostInsertIdentifierGenerator in org.hibernate.id
Classes in org.hibernate.id that implement PostInsertIdentifierGenerator Modifier and Type Class Description class
AbstractPostInsertGenerator
Deprecated, for removal: This API element is subject to removal in a future version.Subclasses should now directly inheritPostInsertIdentifierGenerator
andBulkInsertionCapableIdentifierGenerator
, or even better, simply implementOnExecutionGenerator
directly.class
IdentityGenerator
AnOnExecutionGenerator
that handlesIDENTITY
/"autoincrement" columns on those databases which support them.class
SelectGenerator
A generator thatselect
s the just-insert
ed row to determine the column value assigned by the database.
-