Unable to create requested service [org.hibernate .engine.jdbc.env.spi.JdbcEnvironment]-MySQL

前端 未结 6 1647
眼角桃花
眼角桃花 2021-02-15 17:54

I am a newbie to Hibernate. I am currently using Spring boot framework and trying to create database tables through hibernate.

I know the same question is asked before b

6条回答
  •  爱一瞬间的悲伤
    2021-02-15 18:42

    connection.driver_class property must be compatible with mysql-connector jar.

    mysql-connector < 5.5.xx use com.mysql.jdbc.Driver

    mysql-connector > 5.5.xx use com.mysql.cj.jdbc.Driver

提交回复
热议问题