1

アプリケーションをapachetomcatで実行すると、以下のエラーが発生します。

HTTP Status 500 - Servlet.init() for servlet spring threw exception

根本的な原因

org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: 
Line 11 in XML document from ServletContext resource [/WEB-INF/spring-servlet.xml] is invalid;
 nested exception is org.xml.sax.SAXParseException: cvc-elt.1: Cannot find the declaration of element 'beans'.

私のspring-context.xmlはこれです

            <?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans http://java.sun.com/xml/ns/javaee" 
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
     xmlns:cotext="http://www.springframework.org/schema/context"
     xmlns:mvc="http://www.springframework.org/schema/mvc"
     xmlns:beans="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/mvc">

     <mvc:annotation-driven/>
     <cotext:component-scan base-package="springmvc"/>   

https://jira.springsource.org/browse/SPR-3372を試しましたが運がありませんでした。

助けてください。

4

2 に答える 2

1

私に気を悪くすることはほとんどありません。

1) xmlns属性の「 http://java.sun.com/xml/ns/javaee 」を削除する必要があります。これがここでの主な問題だと思います。「xmlns」属性は、仕様に従って複数のURIを取得できません: http ://www.w3schools.com/xml/xml_namespaces.asp

2)一部のXMLライブラリは、前のXMLファイルの先頭のスペースを好みません(特にEclipseは文句を言います)

3)xsi:schemaLocation値にmvcのロケーションURIがありません。おそらく次のようになります。

 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/mvc
               http://www.springframework.org/schema/context/spring-mvc-3.0.xsd">

何らかの理由で「beans」名前空間プレフィックスを本当に使用したい場合を除いて、前の回答が示唆しているように、余分な「beans」宣言を削除することもできます。

于 2012-12-02T01:32:12.017 に答える
0

xmlns:beans="http://www.springframework.org/schema/beans"XMLヘッダーにの繰り返しエントリがあります。そのインスタンスを1つ削除して、以下のようにしてみてください。

<beans xmlns="http://www.springframework.org/schema/beans http://java.sun.com/xml/ns/javaee" 
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
 xmlns:cotext="http://www.springframework.org/schema/context"
 xmlns:mvc="http://www.springframework.org/schema/mvc"
 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/mvc">

      <mvc:annotation-driven/>
      <cotext:component-scan base-package="springmvc"/>   
于 2012-12-02T00:48:39.877 に答える