| CfgXmlAccessServiceInitiatorQuarkus |
|
| DialectFactoryInitiator |
Copied from
org.hibernate.engine.jdbc.dialect.internal.DialectFactoryInitiator
|
| DisabledJMXInitiator |
Replacement implementation of org.hibernate.jmx.internal.JmxServiceInitiator
MBeans are currently too troublesome in GraalVM, so enforce disabling its
usage.
|
| FlatClassLoaderService |
Replaces the ClassLoaderService in Hibernate ORM with one which should work in native mode.
|
| QuarkusImportSqlCommandExtractorInitiator |
|
| QuarkusMutableIdentifierGeneratorFactory |
Wraps the default DefaultIdentifierGeneratorFactory so to make sure we store the Class references
of any IdentifierGenerator which is accessed during the build of the Metadata.
|
| QuarkusMutableIdentifierGeneratorFactoryInitiator |
Needs to mimick MutableIdentifierGeneratorFactoryInitiator, but allows us to capture
which Identifier strategies are being used, so that we can keep a reference to the classed
needed at runtime.
|
| QuarkusRegionFactoryInitiator |
|
| QuarkusSimplifiedIdentifierGeneratorFactory |
Quarkus custom implementation of Hibernate ORM's org.hibernate.id.factory.internal.DefaultIdentifierGeneratorFactory
differences with the original:
1# it does not attempt to use a BeanContainer to create instances; Hibernate ORM introduced this feature in HHH-14688
2# No need to handle AvailableSettings.USE_NEW_ID_GENERATOR_MAPPINGS as Quarkus users shouldn't disable it (on by default)
|
| QuarkusStaticDialectFactory |
|
| QuarkusStaticDialectFactoryInitiator |
|
| StandardHibernateORMInitiatorListProvider |
Here we define the list of standard Service Initiators to be used by
Hibernate ORM when running on Quarkus.
|