Java 找不到元素';豆子;。

Java 找不到元素';豆子;。,java,xml,spring,xsd,Java,Xml,Spring,Xsd,下面是我的sdnext-servlet.xml声明。我得到了这个错误 “找不到元素‘bean’的声明” 即使我在线。我正在使用Spring3.0.1 这里是sdnext servlet.xml: <beans xmlns:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:xsi="http://www.w3

下面是我的sdnext-servlet.xml声明。我得到了这个错误

“找不到元素‘bean’的声明”

即使我在线。我正在使用Spring3.0.1

这里是sdnext servlet.xml:

<beans xmlns:context="http://www.springframework.org/schema/context"
    xmlns:tx="http://www.springframework.org/schema/tx" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://www.springframework.org/schema/beans"
    xsi:schemalocation="  
http://www.springframework.org/schema/beans  
http://www.springframework.org/schema/beans/spring-beans-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/tx  
http://www.springframework.org/schema/tx/spring-tx-3.0.xsd">

    <context:property-placeholder location="classpath:resources/database.properties">
    </context:property-placeholder>
    <context:component-scan base-package="com">
    </context:component-scan>

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

    <bean
        class="org.springframework.web.servlet.view.InternalResourceViewResolver"
        id="jspViewResolver">
        <property name="viewClass"
            value="org.springframework.web.servlet.view.JstlView"></property>
        <property name="prefix" value="/WEB-INF/views/"></property>
        <property name="suffix" value=".jsp"></property>
    </bean>

    <bean class="org.springframework.jdbc.datasource.DriverManagerDataSource"
        id="dataSource">
        <property name="driverClassName" value="${database.driver}"></property>
        <property name="url" value="${database.url}"></property>
        <property name="username" value="${database.user}"></property>
        <property name="password" value="${database.password}"></property>
    </bean>

    <bean
        class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean"
        id="sessionFactory">
        <property name="dataSource" ref="dataSource"></property>
        <property name="annotatedClasses">
            <list>
                <value>com.dto.Causer</value>
            </list>
        </property>
        <property name="hibernateProperties">
            <props>
                <prop key="hibernate.dialect">${hibernate.dialect}</prop>
                <prop key="hibernate.show_sql">${hibernate.show_sql}</prop>
                <prop key="hibernate.hbm2ddl.auto">${hibernate.hbm2ddl.auto}  </prop>
            </props>
        </property>
    </bean>

    <bean class="org.springframework.orm.hibernate3.HibernateTransactionManager"
        id="hibernateTransactionManager">
        <property name="sessionFactory" ref="sessionFactory"></property>
    </bean>
</beans>  

com.dto.Causer
${hibernate.dial}
${hibernate.show_sql}
${hibernate.hbm2ddl.auto}

它是
schemaLocation
,而不是
schemaLocation

修复错误后,关闭
context:property placeholder
和其他一些类似元素,而不是让它们的内容包含换行符

以下是已更新的有效XML:

<beans xmlns:context="http://www.springframework.org/schema/context"
       xmlns:tx="http://www.springframework.org/schema/tx"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns="http://www.springframework.org/schema/beans"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
                           http://www.springframework.org/schema/beans/spring-beans-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/tx
                           http://www.springframework.org/schema/tx/spring-tx-3.0.xsd">

  <context:property-placeholder location="classpath:resources/database.properties"/>
  <context:component-scan base-package="com"/>

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

  <bean
      class="org.springframework.web.servlet.view.InternalResourceViewResolver"
      id="jspViewResolver">
    <property name="viewClass"
              value="org.springframework.web.servlet.view.JstlView"></property>
    <property name="prefix" value="/WEB-INF/views/"></property>
    <property name="suffix" value=".jsp"></property>
  </bean>

  <bean class="org.springframework.jdbc.datasource.DriverManagerDataSource"
        id="dataSource">
    <property name="driverClassName" value="${database.driver}"></property>
    <property name="url" value="${database.url}"></property>
    <property name="username" value="${database.user}"></property>
    <property name="password" value="${database.password}"></property>
  </bean>

  <bean
      class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean"
      id="sessionFactory">
    <property name="dataSource" ref="dataSource"></property>
    <property name="annotatedClasses">
      <list>
        <value>com.dto.Causer</value>
      </list>
    </property>
    <property name="hibernateProperties">
      <props>
        <prop key="hibernate.dialect">${hibernate.dialect}</prop>
        <prop key="hibernate.show_sql">${hibernate.show_sql}</prop>
        <prop key="hibernate.hbm2ddl.auto">${hibernate.hbm2ddl.auto}  </prop>
      </props>
    </property>
  </bean>

  <bean class="org.springframework.orm.hibernate3.HibernateTransactionManager"
        id="hibernateTransactionManager">
    <property name="sessionFactory" ref="sessionFactory"></property>
  </bean>
</beans>  

com.dto.Causer
${hibernate.dial}
${hibernate.show_sql}
${hibernate.hbm2ddl.auto}

尝试删除具有如下模式位置的版本
http://www.springframework.org/schema/beans/spring-beans.xsd
。您使用的是哪个版本的spring?我使用的是spring 3.0.1我删除了该版本并进行了尝试,但仍然收到相同的错误。无论如何,xml似乎是有效的。。启动spring上下文时有问题吗?或者什么时候尝试验证xml?是的,我收到“来自ServletContext资源[/WEB-INF/config/sdnext servlet.xml]的xml文档中的第10行无效;嵌套异常为org.xml.sax.SAXParseException:cvc elt.1:找不到元素“bean”的声明。”