web.xml报错

Posted 于天云

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了web.xml报错相关的知识,希望对你有一定的参考价值。

在写web.xml的时候又一次总是报cvc-complex-type.2.4.a: Invalid content was found starting with element 错误,还出现小红叉,在网上找了很多,有说是把报红叉的代码写在<jsp-config></jsp-config>之间,试了之后发现完全没用。
后来在外文网站上找到了一个方法就把问题解决了
解决方法二:

<async-supported>true</async-supported>是web.xml 3.0的新特性,只需将

<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://Java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">

改成:

<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
即可解决。




以上是关于web.xml报错的主要内容,如果未能解决你的问题,请参考以下文章

web.xml报错

idea中,使用facets添加完web后,项目已变为web项目,但web.xml中内容经常变为红色,并报错,如何解决?

servlet 中web.xml在eclipse下报错?

web.xml配置文件中true报错的解决方案

IDEA创建Struts2报错——web.xml

idea中web.xml报错 Servlet should have a mapping