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

来源:2-2 整合配置SpringMVC框架

小呆888

2017-04-21 16:01

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

写回答 关注

3回答

  • 慕后端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 里头的头换了试下

    小呆888

    谢谢,换成你的,可以了。

    2017-05-08 10:30:32

    共 1 条回复 >

  • 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'.

    紫枫fhq 回复紫枫fhq

    hanlder

    2018-12-04 13:24:50

    共 2 条回复 >

  • 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-->


    小呆888

    恩。解决了。谢谢。

    2017-05-08 10:30:59

    共 2 条回复 >

Java高并发秒杀API之web层

Java实现高并发秒杀API的第三门课,介绍Web层的设计和实现

66079 学习 · 395 问题

查看课程

相似问题