java - 在 hibernate5.1 和 spring 4.1.6 集成中找不到 Hibernatetemplate 的 opensession() 异常

标签 java spring hibernate

我正在使用 hibernate 5.1.0spring 4.1.6 jar。对于 Hibernate 3.6 jar,它工作正常,但我不想降级我的 hibernate jar。那么 hibernate 5.1spring 4.1.6 集成的解决方案是什么?

Exception in thread "main" java.lang.NoSuchMethodError: org.hibernate.SessionFactory.openSession()Lorg/hibernate/classic/Session;

我的 applicationcontext.xml 文件:

<?xml version="1.0" encoding="UTF-8"?>  
<beans  
xmlns="http://www.springframework.org/schema/beans"  
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
xmlns:p="http://www.springframework.org/schema/p"  
xsi:schemaLocation="http://www.springframework.org/schema/beans  
    http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">  


<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">  
    <property name="driverClassName"  value="com.mysql.jdbc.Driver"></property>  
    <property name="url" value="jdbc:mysql://localhost:3306/test"></property>  
    <property name="username" value="root"></property>  
    <property name="password" value="admin"></property>  
</bean>  

<bean id="hibernateSessionFactory"  class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">  
    <property name="dataSource" ref="dataSource"></property>  

    <property name="mappingResources">  
    <list>  
    <value>author.hbm.xml</value>  
    </list>  
    </property>  

    <property name="hibernateProperties">  
        <props>  
            <prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>  
            <prop key="hibernate.hbm2ddl.auto">update</prop>  
            <prop key="hibernate.show_sql">true</prop>  
             <prop key="current_session_context_class">thread</prop>
             <prop key="cache.provider_class">org.hibernate.cache.NoCacheProvider</prop>
             <prop key="connection.pool_size">1</prop>

        </props>  
    </property>  
</bean>  

<bean id="hibernateTemplate" class="org.springframework.orm.hibernate4.HibernateTemplate">  
<property name="sessionFactory" ref="hibernateSessionFactory"></property>  
</bean>  

<bean id="authorDAO" class="com.dao.AuthorDAO">  
<property name="template" ref="hibernateTemplate"></property>  
</bean>

我的实体类:

package com.vo;

import java.io.Serializable;

public class Author implements Serializable   {

private Integer authorID;

private String authorName;

public Integer getAuthorID() {
    return authorID;
}

public void setAuthorID(Integer authorID) {
    this.authorID = authorID;
}

public String getAuthorName() {
    return authorName;
}

public void setAuthorName(String authorName) {
    this.authorName = authorName;
}

}
我的author.hbm.xml:

<?xml version='1.0' encoding='UTF-8'?>  
 <!DOCTYPE hibernate-mapping PUBLIC  
  "-//Hibernate/Hibernate Mapping DTD 3.0//EN"  
 "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">  

 <hibernate-mapping>  
 <class name="com.hex.vo.Author" table="AUTHOR31668">  
      <id name="authorID">  
      <generator class="assigned"></generator>  
      </id>  

      <property name="authorName"></property>   
 </class>  

</hibernate-mapping>

我的 DAO 类(class):

package com.dao;

import java.util.ArrayList;

import java.util.List;

import org.springframework.orm.hibernate4.HibernateTemplate;

import com.hex.vo.Author;

public class AuthorDAO {

HibernateTemplate template;  

public void setTemplate(HibernateTemplate template) {  
    this.template = template;  
}
public HibernateTemplate getTemplate() {
    return template;
} 

//method to save Author  
public void saveEmployee(Author e){  
     template.save(e);  
}  
//method to update Author  
public void updateEmployee(Author e){  
    template.update(e);  
}  
//method to delete Author  
public void deleteEmployee(Author e){  
    template.delete(e);  
}  
//method to return one Author of given id  
public Author getById(int id){  
    Author e=(Author)template.get(Author.class,id);  
    return e;  
}  
//method to return all employees  
public List<Author> getEmployees(){  
    List<Author> list=new ArrayList<Author>();  
    list=template.loadAll(Author.class);  
    return list;  
}  

}

我的测试客户端类:

package com.test;

import org.springframework.context.ApplicationContext;

import org.springframework.context.support.ClassPathXmlApplicationContext;

import com.dao.AuthorDAO;

import com.vo.Author;




   public class TestClient {

    public static void main(String[] arg){      

        Author author= new Author();
        author.setAuthorID(123);
        author.setAuthorName("Prava");

        ApplicationContext context = 
                 new   ClassPathXmlApplicationContext("applicationContext.xml");

        AuthorDAO dao=(AuthorDAO)context.getBean("authorDAO");  

        dao.saveEmployee(author);  
     System.out.println("Saved successfully..");



    }
}

最佳答案

您正在将版本 3 的 HibernateTemplate 与 hibernate 5 一起使用。这是不兼容的。

此外,HibernateTemplate 已被弃用。你应该考虑换成别的东西。

请查看this文章

关于java - 在 hibernate5.1 和 spring 4.1.6 集成中找不到 Hibernatetemplate 的 opensession() 异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39718860/

相关文章:

java - 从 LinkedList 中删除节点 (Java)

java - JavaFX中如何让TableView根据内容自动改变高度?

java - 关于 Spring bean 容器中的作用域和垃圾回收

java - 为什么这段代码在包装在通用函数中时不起作用?

wordpress - Grails hasone定义null

java - JPA、Hibernate - 处理包含在 RollbackException 中的 ContraintViolationException

java - Swing JProgressBar 没有像我期望的那样重绘

java - 如何使 junit 测试在 springboot 应用程序中使用嵌入式 mongoDB?

java - spring-mongo-1.0.xsd 错误

java - 当检测到类扩展了 Enum 时,如何调用其 valueOf() 方法?