The prefix "mvc" for element "mvc:annotation-driven" is not bound 異常

使用STS或者eclipse 開發SpringMVC應用 時,我靠。。有個小小的東西沒注意搞了半天,spring

STS在建立SpringMVC工程時,自動生成了Dispatcher的配置文件,而後看教程時,使用了<mvc:annotation-driven> 註解配置spring-mvc

可是自動生成的xml裏呢有一個<annotation-driven>, 挺疑惑的,覺得mvc約束文件版本不對,因此配置了好久的本地約束,仍然沒有用mvc

後來決定仔細看看什麼問題,經過代碼排版對齊,發現了。。。。。靠,前綴也是須要配置的!!改爲下面所示代碼。OK了app

 

注意藍色的是之前的,改爲紅色的,就多了個  :mvceclipse

 

The prefix "mvc" for element "mvc:annotation-driven" is not bound異常lua

<?xml version="1.0" encoding="UTF-8"?>spa

<beans:beansxml

    xmlns= "http://www.springframework.org/schema/mvc"blog

    xmlns:mvc="http://www.springframework.org/schema/mvc"教程

    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

    xmlns:beans="http://www.springframework.org/schema/beans"

    xmlns:context="http://www.springframework.org/schema/context"

    xsi:schemaLocation="

        http://www.springframework.org/schema/mvc

        http://www.springframework.org/schema/mvc/spring-mvc.xsd

        http://www.springframework.org/schema/beans

        http://www.springframework.org/schema/beans/spring-beans.xsd

        http://www.springframework.org/schema/context

        http://www.springframework.org/schema/context/spring-context.xsd">

   

    <mvc:annotation-driven />

    <mvc:resources location="/resources/" mapping="/resources/**"/>

       

</beans:beans>

相關文章
相關標籤/搜索