I\'m working with PostgreSQL and Spring 4 and want my app auto create database when it running.
My Entity Class is:
@Entity @Table(name = \"user\", s
The problem is about hibernate dialect. You are using old one. You should use newer one like this.
spring.jpa.database-platform=org.hibernate.dialect.PostgreSQL95Dialect