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

? 版权声明:本文为博主原创文章,转载请注明出处

1.问题描述

  启动hibernate测试案例时报错如下:

2.解决方案:

  2.1 第一次解决:MySQL驱动版本太高。使用的hibernate版本为5.1.5.Final,MySQL驱动版本为6.0.6。将MySQL驱动版本替换为5.1.42即可

  2.2 第二次解决:未启动MySQL服务。以管理员身份启动cmd,运行net start mysql即可(mysql为服务名,有些MySQL版本默认服务名加版本号;eg.mysql57)

时间: 2024-10-09 16:13:04

org.hibernate.service.spi.ServiceException: Unable to create requested service [org.hibernate.engine.jdbc.env.spi.JdbcEnvironment]的相关文章

配置ssh框架启动tomcat服务器报异常Unable to create requested service [org.hibernate.engine.jdbc.env.spi.JdbcEnvironment]

在Spring中配置jdbc时,引用的是dbcp.jar包,在db.properties配置文件中,使用了之前的properties配置文件的用户名username(MySql用户名) 然后在启动服务器报了如下几个异常: 1.org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sessionFactory' defined in class path resource [a

Unable to create requested service org.hibernate.cache.spi.RegionFactory

hibernate 4.3.11+struts2.3.28.1+spring 4.2.5,在搭框架的时候,报的这个错误: Unable to create requested service org.hibernate.cache.spi.RegionFactory 折腾了半天,发现是少包了,这提示根本看不出来吗,额 少了ehcache的包,这个包在hibernate里面 ehcache-core-2.4.3.jar hibernate-ehcache-4.3.11.Final.jar slf4

SpringBoot、Spring MVC报错:Unable to create requested service [org.hibernate.engine.jdbc.env.spi.JdbcEnvironment]

出现问题的原因: jdbc配置不正确 解决方案: 1.检查是否已添加数据库驱动jar包 2.检查数据库服务是否启动 3.检查数据库配置文件 主要为:dialect,driver_class,url,username,password这五项. 务必注意检查大小写以及英文标点. 4.检查是否缺少字符集.时区等配置 示例:jdbc:mysql://localhost:3306/database?useUnicode=true&characterEncoding=UTF-8&serverTimez

关于JAX-WS的Unable to create JAXBContext错误

参考: http://53873039oycg.iteye.com/blog/1979421 今天学了下Jax-Ws的一个简单的例子,刚开始发布时遇到如下错误: Java代码 com.sun.xml.internal.ws.model.RuntimeModelerException: runtime modeler error: Wrapper class com.test.service.jaxws.add is not found. Have you run APT to generate

javax.validation.ValidationException: Unable to create a Configuration, because no Bean Validation provider could be found

1 org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.validation.beanvalidation.LocalValidatorFactoryBean#0': Invocation of init method failed; nested exception is javax.validation.ValidationExc

Unable to start MySQL service. Another MySQL daemon is already running with the same UNIX socket

Unable to start MySQL service. Another MySQL daemon is already running with the same UNIX socket 特征 如果你遇到如下所列的任何问题之一,本文也许能帮到你. MySQL starts/stops properly when started/stopped with the mysqld service restart, but MySQL does not start when a server is

ERROR [org.hibernate.engine.jdbc.spi.SqlExceptionHelper] - Data truncation: Incorrect datetime value: '' for column 'pubdate' at row 1

之前的Connector/J版本是:mysql-connector-java-5.0.4-bin.jar 后来换成mysql-connector-java-5.1.45-bin.jar,问题解决 2018-02-16 01:07:10,086 WARN [org.hibernate.engine.jdbc.spi.SqlExceptionHelper] - SQL Error: 0, SQLState: 220012018-02-16 01:07:10,086 ERROR [org.hibern

Tomcat配置多数据源出现Unable to create initial connections

迁自恶心人的网易博客 2017-06-27完整标题:Tomcat配置多个JNDI数据源(Postgresql)出现Unable to create initial connections of pool 版本说明 tomcat7Postgresql9.1 问题描述 在conf/context.xml中配置了两个数据源指向如下: <Resource name="jdbc/web" auth="Container" type="javax.sql.Dat

python pip fatal error in launcher unable to create process using

用pip安装一个包,不知道为啥,就报了这个错误:python pip fatal error in launcher unable to create process using “” 百度了一下,用下面的命令可以解决,搞定 python2 -m pip install XXX  另外,Python3 的pip我用python3 -m pip install --upgrade pip 搞定