Springboot2.0.4.release report error executing DDL via JDBC statement

stay application.yml Set it like this

spring:
  jpa:
    show-sql: true
    hibernate:
        ddl-auto: update
    database-platform: org.hibernate.dialect.MySQL5InnoDBDialect

The error is because I didn’t add database platform: org.hibernate.dialect . mysql5innodbdialog is not set

Read More: