Package io.quarkus.hibernate.orm.runtime
Class HibernateOrmRuntimeConfigPersistenceUnit
- java.lang.Object
-
- io.quarkus.hibernate.orm.runtime.HibernateOrmRuntimeConfigPersistenceUnit
-
public class HibernateOrmRuntimeConfigPersistenceUnit extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classHibernateOrmRuntimeConfigPersistenceUnit.HibernateOrmConfigPersistenceUnitDatabasestatic classHibernateOrmRuntimeConfigPersistenceUnit.HibernateOrmConfigPersistenceUnitDatabaseGenerationstatic classHibernateOrmRuntimeConfigPersistenceUnit.HibernateOrmConfigPersistenceUnitLogstatic classHibernateOrmRuntimeConfigPersistenceUnit.HibernateOrmConfigPersistenceUnitScriptGenerationstatic classHibernateOrmRuntimeConfigPersistenceUnit.HibernateOrmConfigPersistenceUnitScripts
-
Field Summary
Fields Modifier and Type Field Description HibernateOrmRuntimeConfigPersistenceUnit.HibernateOrmConfigPersistenceUnitDatabasedatabaseDatabase related configuration.HibernateOrmRuntimeConfigPersistenceUnit.HibernateOrmConfigPersistenceUnitLoglogLogging configuration.HibernateOrmRuntimeConfigPersistenceUnit.HibernateOrmConfigPersistenceUnitScriptsscriptsDatabase scripts related configuration.Map<String,String>unsupportedPropertiesProperties that should be passed on directly to Hibernate ORM.
-
Constructor Summary
Constructors Constructor Description HibernateOrmRuntimeConfigPersistenceUnit()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisAnyPropertySet()
-
-
-
Field Detail
-
database
@ConfigItem @ConfigDocSection public HibernateOrmRuntimeConfigPersistenceUnit.HibernateOrmConfigPersistenceUnitDatabase database
Database related configuration.
-
scripts
@ConfigItem @ConfigDocSection public HibernateOrmRuntimeConfigPersistenceUnit.HibernateOrmConfigPersistenceUnitScripts scripts
Database scripts related configuration.
-
log
@ConfigItem @ConfigDocSection public HibernateOrmRuntimeConfigPersistenceUnit.HibernateOrmConfigPersistenceUnitLog log
Logging configuration.
-
unsupportedProperties
@ConfigItem @ConfigDocMapKey("full-property-key") public Map<String,String> unsupportedProperties
Properties that should be passed on directly to Hibernate ORM. Use the full configuration property key here, for instance `quarkus.hibernate-orm.unsupported-properties."hibernate.order_inserts" = true`. [WARNING] ==== Properties set here are completely unsupported: as Quarkus doesn't generally know about these properties and their purpose, there is absolutely no guarantee that they will work correctly, and even if they do, that may change when upgrading to a newer version of Quarkus (even just a micro/patch version). ==== Consider using a supported configuration property before falling back to unsupported ones. If none exists, make sure to file a feature request so that a supported configuration property can be added to Quarkus, and more importantly so that the configuration property is tested regularly.
-
-