Issue
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
Solution
In application.yml
spring: datasource: hikari: schema: nameSchema
Answered By - devoid
Answer Checked By - Pedro (JavaFixing Volunteer)