Core Persistence Schema
Configuration that applies to database persistence schema (used by JPA and JDO datastores).
Property | Default | Description |
---|---|---|
causeway.persistence.schema. |
Does lookup additional "mapping-files" in META-INF/orm-name.xml (equivalent to "mapping-file" entries in persistence.xml) and adds these to those that are already configured the Spring Data way (if any). NOTE: not implemented for JDO |
|
causeway.persistence.schema. |
List of additional schemas to be auto-created. Explicitly creates given list of schemas by using the specified This configuration mechanism does not consider any schema-auto-creation configuration (if any), that independently is provided the standard JPA way. |
|
causeway.persistence.schema. |
CREATE SCHEMA IF NOT EXISTS %S |
Vendor specific SQL syntax to create a DB schema. This template is passed through Default template is \{@literal CREATE SCHEMA IF NOT EXISTS %S} with the schema name converted to upper-case. For MYSQL/MARIADB use escape like \{@code |