Error executing DDL "drop sequence if exists hibernate_sequence" via JDBC Statement
在使用springboot+jpa進行部署項目時候,
因為application.yml文件配置錯誤,所以出現上面的異常情況.然后修改.yml配置文件為:
spring: jpa: show-sql: true hibernate: ddl-auto: update database-platform: org.hibernate.dialect.MySQLDialect
一切正常.
