복붙노트

[SPRING] 여러 개의 주석이 발견되었습니다. 일치하는 와일드 카드가 엄격하지만 'ehcache : annotation-driven'요소에 대한 선언을 찾을 수 없습니다.

SPRING

여러 개의 주석이 발견되었습니다. 일치하는 와일드 카드가 엄격하지만 'ehcache : annotation-driven'요소에 대한 선언을 찾을 수 없습니다.

내 응용 프로그램을 개발하는 데 봄을 사용하고 있습니다. XML 파일에서 나는 ehcache의 빈을 만든다. 이 코드는 "여러 주석이 발견되었습니다. 일치하는 와일드 카드는 엄격하지만 'ehcache : annotation-driven'요소에 대한 선언을 찾을 수 없습니다. 이것은 echache 빈을 선언하는 XML 파일입니다.

<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:webflow="http://www.springframework.org/schema/webflow-config"
    xmlns:mvc="http://www.springframework.org/schema/mvc" 
    xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:ehcache="http://ehcache-spring-annotations.googlecode.com/svn/schema/ehcache-spring"
    xmlns:task="http://www.springframework.org/schema/task"
    xsi:schemaLocation="http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.1.xsd
        http://www.springframework.org/schema/webflow-config http://www.springframework.org/schema/webflow-config/spring-webflow-config-2.3.xsd
        http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.1.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
        http://ehcache-spring-annotations.googlecode.com/svn/schema/ehcache-spring      
        http://ehcache-spring-annotations.googlecode.com/svn/schema/ehcache-spring/ehcache-spring-1.1.xsd
        http://www.springframework.org/schema/task 
        http://www.springframework.org/schema/task/spring-task-3.0.xsd">

xml 파일에서 여기에 ehcache의 빈을 만들고 코드의이 줄은 오류를 보여줍니다.

<ehcache:annotation-driven cache-manager="ehCacheManager" />

    <bean id="ehCacheManager"
        class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean">
        <property name="configLocation">
            <value>/WEB-INF/config/ehcache.xml</value>
        </property>
    </bean>

이 오류는 XML 파일에 표시됩니다.

Multiple annotations found at this line:
    - cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'ehcache:annotation-driven'.
    - schema_reference.4: Failed to read schema document 'http://ehcache-spring-annotations.googlecode.com/svn/schema/ehcache-
     spring/ehcache-spring-1.1.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the 
     document is not <xsd:schema>.

누구든지이 문제를 해결할 수있는 방법을 알려주십시오.

해결법

    from https://stackoverflow.com/questions/37818099/multiple-annotations-found-the-matching-wildcard-is-strict-but-no-declaration-c by cc-by-sa and MIT license