keycloak-scim/topics/database/hibernate.adoc

61 lines
2.5 KiB
Text
Raw Normal View History

2016-04-30 04:39:32 +00:00
2016-08-22 08:29:25 +00:00
=== Database Configuration
2016-04-27 21:01:22 +00:00
2016-08-22 08:29:25 +00:00
The configuration for this component lies in the _keycloak-server.json_ file. If you are running in standalone mode, this file is in the _.../standalone/configuration_ directory. If you are running in domain mode this file will live in the _.../domain/servers/{server name}/configuration_ directory.
2016-04-27 21:01:22 +00:00
2016-08-22 08:29:25 +00:00
.Database Config
2016-04-27 21:01:22 +00:00
[source,json]
----
"connectionsJpa": {
"default": {
"dataSource": "java:jboss/datasources/KeycloakDS",
2016-08-22 08:29:25 +00:00
"initializeEmpty": false,
"migrationStrategy": "manual",
"migrationExport": "${jboss.home.dir}/keycloak-database-update.sql"
2016-04-27 21:01:22 +00:00
}
},
----
Possible configuration options are:
dataSource::
JNDI name of the dataSource
jta::
boolean property to specify if datasource is JTA capable
driverDialect::
Value of database dialect.
In most cases you don't need to specify this property as dialect will be autodetected by Hibernate.
2016-08-22 08:29:25 +00:00
initializeEmpty::
Initialize database if empty. If set to false the database has to be manually initialized. If you want to manually initialize the database set migrationStrategy to `manual` which will create a file with SQL commands to initialize the database. Defaults to true.
migrationStrategy::
Strategy to use to migrate database. Valid values are `update`, `manual` and `validate`. Update will automatically migrate the database schema. Manual will export the required changes to a file with SQL commands that you can manually execute on the database. Validate will simply check if the database is up-to-date.
migrationExport::
Path for where to write manual database initialization/migration file.
2016-04-27 21:01:22 +00:00
databaseSchema::
Specify if schema should be updated or validated.
2016-04-29 20:12:12 +00:00
Valid values are `update` (default) and `validate`. The `update` value will set up or update
the table definitions that {{book.project.name}} needs. `validate` just makes sure that the database has
2016-04-27 21:01:22 +00:00
the appropriate table definitions set up.
showSql::
Specify whether Hibernate should show all SQL commands in the console (false by default). This is very verbose!
formatSql::
Specify whether Hibernate should format SQL commands (true by default)
globalStatsInterval::
Will log global statistics from Hibernate about executed DB queries and other things.
Statistics are always reported to server log at specified interval (in seconds) and are cleared after each report.
schema::
Specify the database schema to use
2016-06-09 11:24:33 +00:00
NOTE: All these configuration switches and more are described in the link:{{book.appserver.jpa.link}}[{{book.appserver.jpa.name}}].
2016-04-27 21:01:22 +00:00