當我運行在NetBeans一定的Spring Web 3項目中,我得到這個錯誤:MVC:註解驅動的未綁定
org.xml.sax.SAXParseException; lineNumber:11; columnNumber:30; 前綴「mvc」爲元素 「mvc:annotation-driven」未綁定。
這裏的dispatcher-servlet.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:p="http://www.springframework.org/schema/p"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="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://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">
<mvc:annotation-driven />
<context:component-scan base-package="net.myproject.controllers"/>
<bean id="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver"
p:prefix="/WEB-INF/jsp/"
p:suffix=".jsp" />
</beans>
我覺得我做了適當的命名空間聲明,但很明顯,我還是忽視的東西。爲什麼我得到這個錯誤?
應用程序不會崩潰或任何事情,但經驗教會我永遠不要忽視警告。所以你說這可能是一個NetBeans或Ant錯誤? – Pieter 2011-05-15 18:45:17
是的。最有可能的。我只是在eclipse中保存了你的調度器 - servlet,並且沒有任何問題。 – Bozho 2011-05-15 18:59:40