Я использую Spring 3.0.5 в Eclipse 3.5, но в контексте моего сервлета я получаю предупреждение против <mvc:annotation-driven/>.
<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?
Спасибо.
Попробуйте очистить кэш Eclipse: Preferences > General > Network Connections > Cache. Надеюсь, это сработает.
Preferences > General > Network Connections > Cache.