小呆888
2017-04-21 16:01
<mvc:default-servlet-handler/>报错是怎么回事呀
应该是你的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 里头的头换了试下
cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'mvc:default-servlet-hander'.
你在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-->
Java高并发秒杀API之web层
66079 学习 · 395 问题
相似问题