4

私はこれが重複していることを知っています、そしてあなた方はそれのために私をからかうつもりです、しかし私はすべての投稿を読んだ後に適切な解決策を得ることができませんでした。
Spring SourceToolSuiteでSpringTemplateアプリケーションを構築しようとしています。次のエラーが発生します。

org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException:ServletContextリソース[/WEB-INF/spring/appServlet/servlet-context.xml]からのXMLドキュメントの16行目が無効です。ネストされた例外はorg.xml.sax.SAXParseExceptionです:cvc-complex-type.2.4.c:一致するワイルドカードは厳密ですが、要素'resources'の宣言が見つかりません。

私のroot-context.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:aop="http://www.springframework.org/schema/aop"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:cache="http://www.springframework.org/schema/cache"
    xmlns:ehcache="http://www.springmodules.org/schema/ehcache"
    xsi:schemaLocation="http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/cache http://www.springframework.org/schema/cache/spring-cache-3.1.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
        http://www.springmodules.org/schema/ehcache http://www.springmodules.org/schema/cache/springmodules-ehcache.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.0.xsd">

    <!-- Root Context: defines shared resources visible to all other web components -->

</beans>

アプリケーションにjarファイルがない場合はお知らせください。
これらは、アプリケーションにある唯一のjarファイルです:
displaytag-1.0-b3.jar、spring-2.0.6.jar、spring-asm-3.0.3.RELEASE.jar、spring-beans-3.0.3.RELEASE。 jar、spring-context-3.0.3.RELEASE.jar、spring-core-3.0.3.RELEASE.jar、spring-expression-3.0.3.RELEASE.jar、spring-hibernate3-2.0.8.jar、spring- web-3.0.3.RELEASE.jar&spring-webmvc-3.0.3.RELEASE.jar

これが私のservlet-context.xmlです

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

    <!-- DispatcherServlet Context: defines this servlet's request-processing infrastructure -->

    <!-- Enables the Spring MVC @Controller programming model -->
    <annotation-driven />

    <!-- Handles HTTP GET requests for /resources/** by efficiently serving up static resources in the ${webappRoot}/resources directory -->
    <resources mapping="/resources/**" location="/resources/" />

    <!-- Resolves views selected for rendering by @Controllers to .jsp resources in the /WEB-INF/views directory -->
    <beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <beans:property name="prefix" value="/WEB-INF/views/" />
        <beans:property name="suffix" value=".jsp" />
    </beans:bean>

    <context:component-scan base-package="com.foo.controller" />



</beans:beans>

助けてください...それは本当に迷惑です。

4

1 に答える 1

11

あなたの XML は問題ありませんが、Spring MVC 3 に関する SpringSource ブログ投稿のこのコメントによると

この<mvc:resources/>タグは、Spring Framework 3.0.4 で導入される新機能です。

アプリケーションは Spring 3.0.3 を使用しているため、リソース タグを使用するには 3.0.4 以降にアップグレードする必要があります。

于 2012-11-30T13:47:23.553 に答える