2015-01-30 2 views
0

Ниже приведена ошибка, которую я получаю после обновления до весны.SAXParseException после обновления до весны 4.1.1

Caused by: 
    org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: 
    Line 20 in XML document from class path resource [dataStoreContext.xml] is invalid; nested exception is  
    org.xml.sax.SAXParseException: cvc-complex-type.3.2.2: Attribute 'local' is not allowed to appear in element 'ref'. 

версия Hibernate я использую 3,0

Ниже мой контекст XML с помощью

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

     <bean id="dataSource"  
     class="org.springframework.jndi.JndiObjectFactoryBean"> 
     <property name="jndiName"> 
     <value>cdqiDS</value> 
     </property> 
     </bean> 

      <bean id="sessionFactory" 
     class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"> 
     <property name="dataSource"> 
     <ref local="dataSource"/> 
      </property> 
      <property name="mappingResources"> 
       </property> 

Edit 1: После изменения локального, как боб я получаю ошибку ниже

org.springframework.beans.BeanInstantiationException: Could not 
    instantiate bean class 
     [org.springframework.context.support.ClassPathXmlApplicationContext]: 
    Constructor threw exception; nested exception is 
     org.springframework.beans.factory.BeanCreationException: 
    Error creating bean with name 'sessionFactory' defined in class path 
    resource [dataStoreContext.xml]: 
    Initialization of bean failed; nested exception is 
    java.lang.NoClassDefFoundError: org/springframework/jdbc/support/lob/LobHandler 
+0

@Jens можно использовать как ниже sai

+0

@ M. Deinum любая идея о проблеме, которую я получаю – sai

ответ

0

Добавить org.springframework.jdbc.jar t o ваш путь к классу.

+0

Добавлена ​​обновленная баннер spring-jdbc к пути класса, проблема решена благодаря – sai

Смежные вопросы