<mvc:default-servlet-handler/>报错 求大神解答

问题描述

<mvc:default-servlet-handler/>报错 求大神解答

我从新导入的项目 在原来的机子上没有问题 但是导入到新的机子就有问题了
不能识别mvc:default-servlet-handler/标签
报错:cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'mvc:default-servlet-handler/>
我的applicationContext.xml配置如下
xmlns:context="http://www.springframework.org/schema/context"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.0.xsd">

    我的web.xml配置如下
    <web-app version="2.5"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">

解决方案

Java 的真心没学深

时间: 2024-10-29 13:12:53

&amp;lt;mvc:default-servlet-handler/&amp;gt;报错 求大神解答的相关文章

用的spring mvc 添加了分页 功能后一直报错 求大神解决

问题描述 用的spring mvc 添加了分页 功能后一直报错 求大神解决 org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerExceptionResolver]Resolving exception from handler [com.app.controller.ManageController@185c0de]: java.lang.NumberFormatException: For input s

spring mvc +hibernate4事务控制问题求大神解答

问题描述 spring mvc +hibernate4事务控制问题求大神解答 web.xml <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="

ubuntu14.04+openstack( juno) /etc/nova/ nova.conf文件只有[default]section.求大神解答

问题描述 如题:apt-getinstallnova-apinova-certnova-conductornova-consoleauthnova-novncproxynova-schedulerpython-novaclient安装后,修改/etc/nova/nova.conf文件,里面只有:[DEFAULT]dhcpbridge_flagfile=/etc/nova/nova.confdhcpbridge=/usr/bin/nova-dhcpbridgelogdir=/var/log/nov

新人servlet和filter编程出问题求大神解救

问题描述 这个是写得servlet用于登陆成功后的显示这个是拦截器密码错了就直接系统控制台输出youarewrong登陆界面JSP的还有配置文件问题有2个.1个是登陆界面中文的显示问题,另外一个是拦截器为什么只有一半的功能实现了.账号密码输入正确以后为什么页面是跳出一个下载界面文件类型:未知.百思不得其解.求各位大大帮我看看...谢谢 解决方案 解决方案二:<filter-mappping>改这样,<filter-mappping><filter-name>testfi

asp.net mvc 关于FormCollection collection采集不到数据问题.大神们帮帮忙谢谢,指点一下也可以

问题描述 asp.net mvc 关于FormCollection collection采集不到数据问题.大神们帮帮忙谢谢,指点一下也可以 新手求请教!就是FormCollection collection采集不到前台的数据,之前用的时候从没出现这种问题. 解决方案 你在控制器端试试不要用FormCollection collection来接收,先试试用 public ActionResult xxxxxx(string line)来接收试试看 解决方案二: 视图转型了吗?引用mvc的js文件了

我是刚来的菜鸟,求大神帮忙,自己弄了三四天了还没解决,mvc如何把上传后的图片进行删除!

问题描述 Index.cshtmlvarimages=["fileInfo"];$("di").each(function(){images.push($(this).attr("src"));});//alert(images.length);for(vari=0;i<images.length;i++){//alert(i);varobj=newImage();obj.src=data;obj.onload=function(){ale

从jsp中向servlet传数据库指针的写法不知道对不对,rs是不是可以传过去,求大神指导

问题描述 从jsp中向servlet传数据库指针的写法不知道对不对,rs是不是可以传过去,求大神指导 rs是数据库指针,想在servlet中获取rs数据库指针,不知道这么写对不对

servlet-java关于Servlet里面跳转jsp页面出现找不到页面的问题,急求,大神,小弟跪求了!!

问题描述 java关于Servlet里面跳转jsp页面出现找不到页面的问题,急求,大神,小弟跪求了!! 问题:通过form表单跳转到servlet中处理事物完后,需要再跳转到另外一个jsp页面.我是用了很多种方法:都是页面找不到错误.使用过的方法: 1.response.sendRedirect("excelInport.jsp"); 2.request.getRequestDispatcher("excelInport.jsp").forward(request,

sping mvc-关于Spirng MVC求大神

问题描述 关于Spirng MVC求大神 使用spring MVC 控制器中的方法添加@RequestMapping('pathName')注解后 发现请求路径名pathName 有的能访问 有的不能访问 当我写成 @RequestMapping("/listSensitiveWords")时就能访问到方法 但是写成 @RequestMapping("/listSensitiveWord")就访问不了 是什么原因呢?