hibernate3.6+spring3.2+jpa(hibernate-annotations-3.4)配置有关问题

hibernate3.6+spring3.2+jpa(hibernate-annotations-3.4)配置问题
我的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"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-3.2.xsd 
http://www.springframework.org/schema/tx 
http://www.springframework.org/schema/tx/spring-tx.xsd 
http://www.springframework.org/schema/aop
    http://www.springframework.org/schema/aop/spring-aop.xsd">
    
    <bean id="pum" class="org.springframework.orm.jpa.persistenceunit.DefaultPersistenceUnitManager">
      <property name="persistenceXmlLocations">
        <list>
          <value>classpath:META-INF/persistence.xml</value>
        </list>
      </property>
      <!--  comment dataSourceLooup to use jndi -->  
      <property name="dataSourceLookup">  
            <bean class="org.springframework.jdbc.datasource.lookup.BeanFactoryDataSourceLookup" />  
      </property>  
     
    </bean>
    
    <bean id="oracleJpaVendor"  
        class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter">  
         <property name="showSql" value="true" />  
         <property name="generateDdl" value="true" />  
    </bean>   
    
    <bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
      <property name="persistenceUnitManager" ref="pum"/>
      <property name="persistenceUnitName" value="loganalyze"/>
      <property name="jpaVendorAdapter" ref="oracleJpaVendor" />  
      <property name="loadTimeWeaver">  
         <bean class="org.springframework.instrument.classloading.InstrumentationLoadTimeWeaver" />  
      </property>  
      <property name="jpaDialect">  
         <bean class="org.springframework.orm.jpa.vendor.HibernateJpaDialect"/>  
      </property>  
    </bean>

<bean id="transactionManager"
class="org.springframework.orm.jpa.JpaTransactionManager">
<property name="entityManagerFactory" ref="entityManagerFactory" />
<qualifier value="oracleEM" />  
        <property name="jpaDialect">  
            <bean class="org.springframework.orm.jpa.vendor.HibernateJpaDialect" />  
        </property>

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

却报错误 
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
Dec 2, 2013 3:41:03 PM org.springframework.beans.factory.support.DefaultListableBeanFactory destroySingletons
INFO: Destroying singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@7e98f9c2: defining beans [pum,oracleJpaVendor,entityManagerFactory,transactionManager,org.springframework.aop.config.internalAutoProxyCreator,org.springframework.transaction.annotation.AnnotationTransactionAttributeSource#0,org.springframework.transaction.interceptor.TransactionInterceptor#0,org.springframework.transaction.config.internalTransactionAdvisor]; root of factory hierarchy
Dec 2, 2013 3:41:03 PM org.springframework.web.context.ContextLoader initWebApplicationContext
SEVERE: Context initialization failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in class path resource [applicationContext.xml]: Invocation of init method failed; nested exception is java.lang.NoSuchFieldError: INSTANCE
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1512)