2016-09-27 5 views
0

hibernate 5.1.0spring 4.1.6 jarsを使用しています。 Hibernate 3.6 jarについてはうまくいきますが、私は休止状態のjarをダウングレードしたくありません。では、hibernate 5.1spring 4.1.6の統合のソリューションは何ですか? hibernateetemplatein hibernate5.1とspring 4.1.6の統合でopensession()例外が見つかりません。

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クラス:

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; 
} 

}

マイTestclientクラス:

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.."); 



    } 
} 
+0

Authorクラスに@Entityがないのはなぜですか? author.hbm.xmlファイルを共有できますか? –

+0

Hibernate5を使用していますが、Hibernate4クラスとhibernate3クラスをコードと設定で使用しています。あなたは、あなたの休止状態のバージョンに一致するパッケージからそれらを使用する必要があります。 –

+0

@AmerQarabsa ya。私はauthor.hbm.xmlファイルを追加することを躊躇しました。 – Prava

答えて

2

ハイバネート5でバージョン3のHibernateTemplateを使用しています。これは互換性がありません。

HibernateTemplateは推奨されていません。 sth elseに変更することを検討する必要があります。

this記事

+0

HibernateTemplateは@Entityという注釈なしでエンティティにマップできますか? –

+0

'HibernateTemplate'は十分に古いので、これまでにコメントしたように古いhbm.xmlマッピングと一緒になりました。注釈方法と互換性があるかどうかはわかりませんが、実際に何年も使っていません!投稿されたリンクも参照してください。これは間違いなくHibernate 5の方法を説明しており、それはあなたにそれを行う方法をガイドします。新しいプロジェクトでは 'HibernateEntity'を使うべきではありません。 – Apostolos

+0

"古いhbm.xmlで"私がhbmの設定を知っている限り、まだ広く冬眠に使用されています、特に春のプロパティをマッピングするために、間違っていますか? –

0

春4.1.6サポートは3を休止状態と春と5を休止状態に統合するためのだから、4休止状態、春-ORMジャーがhibernate5を持っている場合、スプリング4.3のjar(最新のjarファイル)を使用して見てください。サポート。

関連する問題