Identifiers can be quoted globally (for example to avoid clash with reserved keywords in table names etc ...).
This can be achieved with the hibernate property :
hibernate.globally_quoted_identifiers=true
"JpaProperties$Hibernate" should be modified so that it can add this property to Hibernate's properties.
You should be able to set any Hibernate property in application.properties by prefixing it with spring.jpa.properties. For example:
spring.jpa.properties.hibernate.globally_quoted_identifiers=true
This is mentioned in the docs, but it could perhaps be made a little easier to find.
Yep, suffice to give an example with a different property such as the one mentioned. Thanks
Most helpful comment
You should be able to set any Hibernate property in
application.propertiesby prefixing it withspring.jpa.properties. For example:This is mentioned in the docs, but it could perhaps be made a little easier to find.