복붙노트

[SPRING] 일치하는 와일드 카드는 엄격하지만 'resources'요소에 대한 선언을 찾을 수 없습니다.

SPRING

일치하는 와일드 카드는 엄격하지만 'resources'요소에 대한 선언을 찾을 수 없습니다.

나는 이것이 중복되어 있다는 것을 알고 있으며, 사람들은 그것을 위해 나를 괴롭 히 겠지만 모든 게시물을 읽은 후에는 적절한 해결책을 얻지 못했습니다. 스프링 소스 툴 스위트 (Spring Source Tool Suite)에서 스프링 템플리트 애플리케이션을 구현하려고합니다. 다음 오류가 발생합니다.

내 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>

제발 도와 줘 ... 정말 짜증나.

해결법

  1. ==============================

    1.XML은 괜찮지 만 Spring MVC 3에 대한 SpringSource 블로그 게시물에 대한이 코멘트에 따르면

    XML은 괜찮지 만 Spring MVC 3에 대한 SpringSource 블로그 게시물에 대한이 코멘트에 따르면

    응용 프로그램은 Spring 3.0.3을 사용하므로 resources 태그를 사용하려면 3.0.4 이상으로 업그레이드해야합니다.

  2. from https://stackoverflow.com/questions/13645792/the-matching-wildcard-is-strict-but-no-declaration-can-be-found-for-element-re by cc-by-sa and MIT license