Spring v3 no declaration can be found for element 'mvc:resources'

后端 未结 5 1056
广开言路
广开言路 2020-12-01 14:23

Currently Running

Tomcat: v6

Spring Tools Suite: v2.7.2

Spring Framework: spring-webmvc-3.0.5

Servlet XML

 

        
5条回答
  •  有刺的猬
    2020-12-01 14:40

    I think your schemaLocation mapping is incorrect. The namespace is specified as:

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

    which is correct, I believe, but in the schemaLocation you have

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

    So if you change the first line of the schemaLocation mapping to your mvc namespace, it should work fine.

提交回复
热议问题