They got error messages like:
Schema-validation: missing table
Schema-validation: missing column
Easy to get rid of this within a spring boot app if you know how. Here is my thought on that:
spring.jpa.hibernate.ddl-auto=validate
spring.datasource.hikari.datasource-properties.includeSynonyms=true
spring.jpa.properties.hibernate.synonyms=true
will help Spring Boot to configure the hikari pool and the hibernate source to also use synonyms for the metadata exploration.
Take care to also add config for tomcat or any other pool, if you don't use the spring default hikari pool.