Fix User Guide settings section
This commit is contained in:
parent
67f1a809b2
commit
ffbae4c736
|
@ -502,17 +502,45 @@ settingsDocumentation {
|
||||||
description = "Settings related to integrating with the Proxool Connection pool"
|
description = "Settings related to integrating with the Proxool Connection pool"
|
||||||
settingsClassName "org.hibernate.cfg.ProxoolSettings"
|
settingsClassName "org.hibernate.cfg.ProxoolSettings"
|
||||||
}
|
}
|
||||||
mapping {
|
transaction {
|
||||||
explicitPosition = 6
|
explicitPosition = 6
|
||||||
|
summary = "Proxool Connection Pool Settings"
|
||||||
|
description = "Settings which control how Hibernate interacts with and manages transactions"
|
||||||
|
settingsClassName "org.hibernate.cfg.TransactionSettings"
|
||||||
|
}
|
||||||
|
mapping {
|
||||||
|
explicitPosition = 7
|
||||||
summary = "Domain Mapping Settings"
|
summary = "Domain Mapping Settings"
|
||||||
description = "Settings which control how domain mappings are handled"
|
description = "Settings which control how domain mappings are handled"
|
||||||
settingsClassName "org.hibernate.cfg.MappingSettings"
|
settingsClassName "org.hibernate.cfg.MappingSettings"
|
||||||
}
|
}
|
||||||
|
fetch {
|
||||||
|
explicitPosition = 8
|
||||||
|
summary = "Fetch Related Settings"
|
||||||
|
description = "Settings which control aspects of fetching data from the database"
|
||||||
|
settingsClassName "org.hibernate.cfg.FetchSettings"
|
||||||
|
}
|
||||||
|
batch {
|
||||||
|
explicitPosition = 9
|
||||||
|
summary = "JDBC Batch Settings"
|
||||||
|
description = "Settings which control how Hibernate performs JDBC batching updating"
|
||||||
|
settingsClassName "org.hibernate.cfg.BatchSettings"
|
||||||
|
}
|
||||||
environment {
|
environment {
|
||||||
summary = "Runtime Environment Settings"
|
summary = "Runtime Environment Settings"
|
||||||
description = "Settings related to JNDI and ClassLoaders"
|
description = "Settings related to JNDI and ClassLoaders"
|
||||||
settingsClassName "org.hibernate.cfg.EnvironmentSettings"
|
settingsClassName "org.hibernate.cfg.EnvironmentSettings"
|
||||||
}
|
}
|
||||||
|
tenancy {
|
||||||
|
summary = "Multi-tenancy Settings"
|
||||||
|
description = "Settings related multi-tenancy support"
|
||||||
|
settingsClassName "org.hibernate.cfg.MultiTenancySettings"
|
||||||
|
}
|
||||||
|
cdi {
|
||||||
|
summary = "CDI Settings"
|
||||||
|
description = "Settings related to CDI"
|
||||||
|
settingsClassName "org.hibernate.cfg.ManagedBeanSettings"
|
||||||
|
}
|
||||||
schema {
|
schema {
|
||||||
summary = "Schema Tooling Settings"
|
summary = "Schema Tooling Settings"
|
||||||
description = "Settings which control the creation, dropping, update and validation of database schemas"
|
description = "Settings which control the creation, dropping, update and validation of database schemas"
|
||||||
|
@ -560,6 +588,11 @@ settingsDocumentation {
|
||||||
settingsClassName "org.hibernate.spatial.HibernateSpatialConfigurationSettings"
|
settingsClassName "org.hibernate.spatial.HibernateSpatialConfigurationSettings"
|
||||||
settingsClassName "org.hibernate.spatial.integration.SpatialService"
|
settingsClassName "org.hibernate.spatial.integration.SpatialService"
|
||||||
}
|
}
|
||||||
|
session {
|
||||||
|
summary = "Session Event Settings"
|
||||||
|
description = "Settings related to Session events"
|
||||||
|
settingsClassName "org.hibernate.cfg.SessionEventSettings"
|
||||||
|
}
|
||||||
misc {
|
misc {
|
||||||
summary = "Miscellaneous Settings"
|
summary = "Miscellaneous Settings"
|
||||||
description = "Miscellaneous Settings"
|
description = "Miscellaneous Settings"
|
||||||
|
|
Loading…
Reference in New Issue