【随手记录】Unable to create requested service [org.hibernate.engine.jdbc.env.spi.JdbcEnvironment]

发布时间 2023-05-30 20:55:24作者: 空知大仙人

链接数据库报错 Unable to create requested service [org.hibernate.engine.jdbc.env.spi.JdbcEnvironment]

出现这个问题基本是数据库的方言 dialect 或者驱动 driver_class有问题,可以确认下dialect 或者 driver_class的配置和自己要链接的库、库版本是否一致,

比如:

spring.jpa.properties.hibernate.dialect

org.hibernate.dialect.MySQL8Dialect    MySQL8方言

org.hibernate.dialect.MySQLDialect   MySQL5.x及以下的使用该方言

 

spring.datasource.driver-class-name 
com.mysql.jdbc.Driver 是5中的, 即如果你的数据库是5.x及以下的使用该驱动 com.mysql.cj.jdbc.Driver   是6中的,即如果你的数据库是6.0及以上版本的,使用该驱动。