Hibernate新手常见问题org.hibernate.service.spi.ServiceException: Unable to create requested service

org.hibernate.service.spi.ServiceException: Unable to create requested service
[org.hibernate.engine.jdbc.env.spi.JdbcEnvironment]
错误详情:

Hibernate新手常见问题org.hibernate.service.spi.ServiceException: Unable to create requested service_第1张图片


首先看到jdbcEnvironment肯定得先考虑jdbc配置的问题,驱动?配置文件?
第一步:
    检查数据库的驱动,例如: mysql-connector-java-5.1.45-bin.jar
第二步:
    检查xml配置文件--5个必要
com.mysql.jdbc.Driver
   jdbc:mysql:///hibernate
   root
   123
  
  
   org.hibernate.dialect.MySQLDialect

第三步:
    换成新版方言: org.hibernate.dialect.MySQL5Dialect

第四步:
    在url后加上 ?serverTimeZone=UTC,例:jdbc:mysql:///hibernate?serverTimeZone=UTC

以上步骤每完成一步应去测试一下,因为你可能是其中某部分出了问题,改回来即可

你可能感兴趣的:(Hibernate新手常见问题org.hibernate.service.spi.ServiceException: Unable to create requested service)