Home > Net >  Where can install the schema in project with hibernate?
Where can install the schema in project with hibernate?

Time:07-12

I use hibernate. I need to set the current schema somewhere other than in the @Table annotation or in jdbc:postgresql://HOST:PORT/ in application.yml Tell me where else you can install the schema?

spring.jpa.properties.hibernate.default_schema: contact does not see the setting

CodePudding user response:

In application.yml

spring: datasource: hikari: schema: nameSchema

  • Related