其他分享
首页 > 其他分享> > org.hibernate.HibernateException: Access to DialectResolutionInfo cannot be null when 'hibernat

org.hibernate.HibernateException: Access to DialectResolutionInfo cannot be null when 'hibernat

作者:互联网

项目启动报错:

org.hibernate.HibernateException: Access to DialectResolutionInfo cannot be null when 'hibernate.dialect' not set

网上找到两个结果

1.加入配置文件加入:

spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQLDialect

2.

Druid连接池问题,当Druid与Atomikos搭配时,如果MySQL版本高于8.0.11则不被支持

查看数据库使用的是8.0.29版本,Druid版本为1.0.31,出现此错误

解决方案:
将数据库降至8.0.11以下的版本,Druid版本升级至1.1.21或者以上

这里我采用最简单方法,将项目中druid-1.0.31.jar 改为druid-1.2.8.jar,重新启动项目

2.1 mysql8.0.11 有时候还会遇到常见的  Data source rejected establishment of connection,  message from server: "Too many connections"
  需要对用到的库执行一遍,因为不是持久化的保存方式,重启就没了

修改连接数:

set GLOBAL max_connections=1000

标签:dialect,hibernate,8.0,Druid,set,org
来源: https://www.cnblogs.com/q1359720840/p/16442627.html