2012-01-15 20 views
10

Sto riscontrando problemi nell'aggiornamento da Hibernate 3.6 a 4.0.1 (spring da 3 a 3.1).HibernateInterceptor con spring 3.1 e hibernate 4.01

Sto utilizzando hibernateinterceptors per l'iniezione della sessione quando si chiamano alcuni metodi (ad esempio una chiamata OnMessage, Cron updater ecc.) E l'intercettatore OpennSessionInView per le richieste Web. Ha funzionato bene con Hib 3.6 e Spring 3.0, ma a partire da Hibernate4 non riesco a farlo funzionare. HibernateInterceptor è disponibile solo nel pacchetto hibernate3 e l'utilizzo non lo farà funzionare

Qualche idea cosa dovrei fare?

Rimuovere l'elemento intercettore mi rende in grado di avviare le cose, ma quando provo a chiamare il dao da una richiesta non dal Web, ricevo "Nessuna eccezione legata alla sessione".

C'è un modo migliore per intercettare i dao, quindi utilizzare l'intercettatore di sospensione o devo usare un'altra tecnica? Come detto, sto usando il dao dalle richieste web (che sono gestite bene con opensessioninview), JMS OnMessage e SpringCron e nel codice di inizializzazione che non funziona.

Ecco la configurazione di base per il dao

<?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:aop="http://www.springframework.org/schema/aop" 
xmlns:tx="http://www.springframework.org/schema/tx" xmlns:context="http://www.springframework.org/schema/context" 
xmlns:jee="http://www.springframework.org/schema/jee" xmlns:p="http://www.springframework.org/schema/p" 
xmlns:util="http://www.springframework.org/schema/util" 
xsi:schemaLocation=" 
    http://www.springframework.org/schema/beans 
    http://www.springframework.org/schema/beans/spring-beans-3.0.xsd 
    http://www.springframework.org/schema/tx 
    http://www.springframework.org/schema/tx/spring-tx-3.0.xsd 
    http://www.springframework.org/schema/aop 
    http://www.springframework.org/schema/aop/spring-aop-3.0.xsd 
    http://www.springframework.org/schema/jms 
    http://www.springframework.org/schema/jms/spring-jms-3.0.xsd 
     http://www.springframework.org/schema/context 
     http://www.springframework.org/schema/context/spring-context-3.0.xsd 
     http://www.springframework.org/schema/jee 
     http://www.springframework.org/schema/jee/spring-jee-3.0.xsd 
     http://www.springframework.org/schema/util 
     http://www.springframework.org/schema/util/spring-util-3.0.xsd"> 

<bean id="someDao" class="org.springframework.aop.framework.ProxyFactoryBean" 
    p:target-ref="someDaoTarget" p:proxyInterfaces="com.xxxx.MediaDataDao" 
    p:interceptorNames="hibernateInterceptor" /> 

<bean id="someDaoTarget" class="com.xxxx.SomeDaoImpl" 
    p:sessionFactory-ref="sessionFactory" /> 

<tx:annotation-driven transaction-manager="transactionManager" /> 

<bean id="transactionManager" 
class="org.springframework.orm.hibernate4.HibernateTransactionManager"> 
<property name="sessionFactory" ref="sessionFactory" /> 
</bean> 

<bean id="hibernateInterceptor" 
    class="org.springframework.orm.hibernate3.HibernateInterceptor" 
    p:sessionFactory-ref="sessionFactory" /> 

<bean id="sessionFactory" 
    class="org.springframework.orm.hibernate4.LocalSessionFactoryBean" 
    destroy-method="destroy" 
    p:dataSource-ref="dataSource"> 
    <property name="packagesToScan" 
value="com.xxxx" /> 
    <property name="hibernateProperties" ref="hibernateProperties" /> 
</bean> 

<util:properties id="hibernateProperties"> 
<prop key="hibernate.hbm2dll.auto">update</prop> 
<prop key="hibernate.connection.autocommit">false</prop> 
<prop key="hibernate.show_sql">true</prop> 
<prop key="hibernate.format_sql">false</prop> 
<prop key="hibernate.jdbc.batch_size">500</prop> 
<prop key="hibernate.dialect">org.hibernate.dialect.MySQL5Dialect</prop> 
<prop key="hibernate.cache.provider_class">org.hibernate.cache.EhCacheProvider</prop> 
<prop key="javax.persistence.validation.mode">callback</prop> 
</util:properties> 

Eccezione generata quando si utilizza l'intercettore Hibernate è:

Caused by: java.lang.NoSuchMethodError: org.hibernate.SessionFactory.openSession()Lorg/hibernate/classic/Session; 
at org.springframework.orm.hibernate3.SessionFactoryUtils.doGetSession(SessionFactoryUtils.java:322) 
at org.springframework.orm.hibernate3.SessionFactoryUtils.getSession(SessionFactoryUtils.java:233) 
at org.springframework.orm.hibernate3.HibernateInterceptor.getSession(HibernateInterceptor.java:145) 
at org.springframework.orm.hibernate3.HibernateInterceptor.invoke(HibernateInterceptor.java:90) 
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172) 
at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:202) 
at $Proxy37.getAll(Unknown Source) 

O molti questo è un bug, il classic.Session esiste in Hibernate 4?

L'eccezione viene generata da un costruttore di una classe che tenta di accedere a un dao. Funzionava perfettamente con Hibernate 3.6 ma dopo l'aggiornamento non riesco a farlo funzionare.

risposta

3

Se si utilizza Hibernate 4.x sulla sorgente 3.1 o 4.x è necessario utilizzare le classi dalla confezione org.springframework.orm.hibernate4 invece di org.springframework.orm.hibernate3

HibernateInterceptor è stato deprecato in precedenza. Dovresti utilizzare org.springframework.orm.hibernate4.support.OpenSessionInterceptor

Problemi correlati