File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
spring-boot-docs/src/main/asciidoc Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -1463,7 +1463,16 @@ following to your `application.properties`.
1463
1463
NOTE: Hibernate's own internal property name for this (if you happen to remember it
1464
1464
better) is `hibernate.hbm2ddl.auto`. You can set it, along with other Hibernate native
1465
1465
properties, using `spring.jpa.properties.*` (the prefix is stripped before adding them
1466
- to the entity manager). By default the DDL execution (or validation) is deferred until
1466
+ to the entity manager). Example:
1467
+
1468
+ [indent=0]
1469
+ ----
1470
+ spring.jpa.properties.hibernate.globally_quoted_identifiers=true
1471
+ ----
1472
+
1473
+ passes `hibernate.globally_quoted_identifiers` to the Hibernate entity manager.
1474
+
1475
+ By default the DDL execution (or validation) is deferred until
1467
1476
the `ApplicationContext` has started. There is also a `spring.jpa.generate-ddl` flag, but
1468
1477
it is not used if Hibernate autoconfig is active because the `ddl-auto`
1469
1478
settings are more fine grained.
You can’t perform that action at this time.
0 commit comments