Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

6
  • 32
    for hibernate v5: spring.jpa.hibernate.naming.physical-strategy=org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl Commented Feb 14, 2017 at 18:01
  • 3
    Can this be done with an annotation instead of a properties file? Commented Mar 7, 2018 at 1:28
  • How can we achieve that in application.yml file?? Commented Feb 5, 2020 at 10:59
  • @SyedZeeshanAli: It should be same like you do for server port similarly this key value pair should be defined Commented Aug 13, 2020 at 18:15
  • @SyedZeeshanAli User below code. I confirmed it is working. ` sping: jpa: hibernate: naming: physical-strategy: org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl ` Commented Mar 20, 2021 at 4:00