问答详情
源自:2-2 整合配置SpringMVC框架

<mvc:default-servlet-handler/>报错是怎么回事

<mvc:default-servlet-handler/>报错是怎么回事呀

提问者:小呆888 2017-04-21 16:01

个回答

  • 慕后端2394815
    2017-04-21 17:14:06
    已采纳

    应该是你的scheme引用错了

    <beans xmlns="http://www.springframework.org/schema/beans"
           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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.xsd
            http://www.springframework.org/schema/mvc
            http://www.springframework.org/schema/mvc/spring-mvc.xsd
            http://www.springframework.org/schema/context
            http://www.springframework.org/schema/context/spring-context.xsd">

    把你spring-web.xml 里头的头换了试下

  • qq_遥远的她_19
    2018-05-14 16:33:54

    cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'mvc:default-servlet-hander'.

  • gtrfans
    2017-04-21 17:03:57

    你在bean中导入的xmlns错了,以下都是错的。

    xmlns:mvc="http://www.springframework.org/schema/cache"   <!--错误的xmlns-->
    xmlns:mvc="http://www.springframework.org/schema/tx"      <!--错误的xmlns-->
    xmlns:mvc="http://www.springframework.org/schema/task"    <!--错误的xmlns-->

    正确的是以mvc结尾的。

    xmlns:mvc="     <!--正确的xmlns-->