Spring MVC 3:в затмении - PullRequest
       2

Spring MVC 3:в затмении

0 голосов
/ 29 июня 2011

Я использую Spring 3.0.5 в Eclipse 3.5, но в контексте моего сервлета я получаю предупреждение против <mvc:annotation-driven/>.

Предупреждение гласит:

Unable to locate Spring NamespaceHandler for element 'mvc:annotation-driven' of schema namespace 'http://
 www.springframework.org/schema/mvc' in eclipse.

Объявление пространства имен моего контекста сервлета: myapp-servlet.xml

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

...
<mvc:annotation-driven/>

</beans>

Может кто-нибудьпомогите мне понять, почему я получаю это предупреждение в Eclipse 3.5?

Спасибо.

1 Ответ

1 голос
/ 12 марта 2012

Попробуйте очистить кэш Eclipse: Preferences > General > Network Connections > Cache. Надеюсь, это сработает.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...