我是靠谱客的博主 洁净唇彩,最近开发中收集的这篇文章主要介绍The content of element type “web-app“ must match 解决方法1.The content of element type “web-app” must match 解决方法,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
1.The content of element type “web-app” must match 解决方法
问题如下图所示:
这错误大概的意思就是:必须要匹配这个顺序。
解决方法一:
<servlet>
<servlet-name>context</servlet-name>
<servlet-class>com.lzx.Context</servlet-class>
</servlet>
<servlet>
<servlet-name>hello</servlet-name>
<servlet-class>com.lzx.HelloServlet</servlet-class>
</servlet>
<!--servlet标签全都写在servlet-mapping标签上-->
<servlet-mapping>
<servlet-name>context</servlet-name>
<url-pattern>/con</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>hello</servlet-name>
<url-pattern>/hello</url-pattern>
</servlet-mapping>
解决方案二:
<!--删除下列代码-->
<!DOCTYPE web-app PUBLIC
"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd" >
由于web.xml头文件比较旧。规定了代码的书写顺序所以报错。要么按照规定的顺序写代码。要么删除规定。但是删除规定会导致智能提升失效。
这里为大家提供一些其他版本的web.xml的头文件
web.xml v2.3
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
</web-app>
web.xml v2.4
<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_9" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
</web-app>
web.xml v2.5
<?xml version="1.0" encoding="UTF-8"?>
<web-app 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" version="2.5">
</web-app>
web.xml v3.0
<?xml version="1.0" encoding="UTF-8"?>
<web-app
version="3.0"
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_3_0.xsd">
</web-app>
最后
以上就是洁净唇彩为你收集整理的The content of element type “web-app“ must match 解决方法1.The content of element type “web-app” must match 解决方法的全部内容,希望文章能够帮你解决The content of element type “web-app“ must match 解决方法1.The content of element type “web-app” must match 解决方法所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复