Where can install the schema in project with hibernate?

54 Views Asked by At

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

1

There are 1 best solutions below

1
On BEST ANSWER

In application.yml

spring: datasource: hikari: schema: nameSchema