Зависимость для Spring-cache.xsd в приложении Spring-MVC - PullRequest
0 голосов
/ 14 июня 2019

Я пытаюсь реализовать кэширование с помощью Ehcache и выполнил следующую конфигурацию в mvc-dispatcher-servlet.xml

, но я получаю "внутреннюю ошибку сервера" при попытке вызвать REST API.

xsi:schemaLocation="
    http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans.xsd
    http://www.springframework.org/schema/mvc
    http://www.springframework.org/schema/mvc/spring-mvc.xsd
    http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context.xsd
    http://www.springframework.org/schema/ldap 
    http://www.springframework.org/schema/ldap/spring-ldap.xsd
    http://www.springframework.org/schema/security
    http://www.springframework.org/schema/security/spring-security-4.2.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.xsd">

  <cache:annotation-driven cache-manager="ehCacheManager" />
  <bean id="ehCacheManager" class="org.springframework.cache.jcache.JCacheCacheManager">
    <property name="cacheManager">
    <bean class="org.springframework.cache.jcache.JCacheManagerFactoryBean" p:cacheManagerUri="classpath:ehcache.xml" />
    </property>
  </bean>

Когда я нажимаю "http://www.springframework.org/schema/cache/spring-cache.xsd", в веб-браузере Eclipse отображается ошибка HTTP 404, это проблема?

Как я могу решить эту проблему?

...