web.xml中<web-app>提示The content of element type "web-app" must match "(icon?,display- name?,description?,distributable?,

错误:配置web.xml时,出现红色叉叉,提示

The content of element type "web-app" must match "(icon?,display-
  name?,description?,distributable?,context-param*,filter*,filter-mapping*,listener*,servlet*,servlet-
  mapping*,session-config?,mime-mapping*,welcome-file-list?,error-page*,taglib*,resource-env-
  ref*,resource-ref*,security-constraint*,login-config?,security-role*,env-entry*,ejb-ref*,ejb-local-ref*)".
 - No grammar constraints (DTD or XML schema) detected for the document.

原因大概就是:web.xml中标签顺序不符合web-app_2_3.dtd规范

web.xml头部配置:

<?xml version="1.0" encoding="UTF-8"?>
<!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_2_3.dtd规范

解决方案

1:严格按照提示上的顺序排列

2:删除<!DOCTYPE 。。。。这段内容,即<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">删除这行

时间: 2024-11-05 19:36:27

web.xml中<web-app>提示The content of element type "web-app" must match "(icon?,display- name?,description?,distributable?,的相关文章

web.xml中&lt;web-app&gt;报错了--The content of element type &quot;web-app&quot; must match

web.xml中<web-app>报错了--The content of element type "web-app" must match.真是活见鬼! 查完资料后发现,原来web-app_2_3.dtd规范有规定,里面配置的内容要按照规定的顺序来,如下: (icon?,display-name?,description?,distributable?,context-param*,filter*,filter-mapping*,listener*,servlet*,se

web.xml中常用元素的解读

前言 针对一个项目而言,通常会有几类XML文件需要书写. web.xml spring-context.xml spring-mvc.xml other.xml ... 不管有多少配置文件,可以肯定的一点,这些配置文件,都是在web.xml中被指定的. 后续慢慢阐述. web.xml web.xml可以理解为一个Java Web项目入口.在web.xml中通常会有如下几种类型的节点存在,按照加载顺序排列. Listener 此为监听器,在上面3个中是后弦加载的,表示监听某个动作是否发生,发生后要

web.xml 中async-supported爆红叉叉 cvc-complex-type.2.4.a: Invalid content was found starting with element &#39;async-supported&#39;.

新建一个项目在web.xml中些东西是发现async-supported报红叉 cvc-complex-type.2.4.a: Invalid content was found starting with element 'async-supported'. 找了好多终于发现了把表头修改一下就行了,这是一个简单的解决方法: <?xml version="1.0" encoding="UTF-8"?><web-app version="2

服务器启动时Webapp的web.xml中配置的加载顺序

一 1.启动一个WEB项目的时候,WEB容器会去读取它的配置文件web.xml,读取<listener>和<context-param>两个结点. 2.紧急着,容创建一个ServletContext(servlet上下文),这个web项目的所有部分都将共享这个上下文. 3.容器将<context-param>转换为键值对,并交给servletContext. 4.容器创建<listener>中的类实例,创建监听器. 二  Load-on-startup Lo

web.xml中webAppRootKey

------------------------------------------------------------------------------------------------1. web.xml配置  <context-param> <param-name>webAppRootKey</param-name> <param-value>webapp.root</param-value> </context-param>

web.xml中关于Servlet、Filter、Listener的配置

(一)web.xml不同元素的加载顺序 加载顺序与它们在 web.xml 文件中的先后顺序无关.即不会因为 filter 写在 listener 的前面而会先加载 filter. web.xml 的加载顺序是:ServletContext -> context-param -> listener -> filter -> servlet ,而同个类型之间的实际程序调用的时候的顺序是根据对应的 mapping 的顺序进行调用的 (二)web.xml文件详解 (2.1) 首先是sche

java web开发中的奇葩事web.xml中context-param中的注释

同事提交了代码.结果除同事之外,其他人全部编译报错.报错说web.xml中配置的一个bean 没有定义.按照报错提示,各种找,无果. 由于代码全部都是提交到svn主干,之前也没有做过备份,只能一步一步删除同事提交的代码,进行还原. 奇葩事情出现了! <context-param> <param-name>contextConfigLocation</param-name> <param-value> classpath:/context_entry.xml

160715、在web.xml中注册IntrospectorCleanupListener解决Quartz等框架可能产生的内存泄露问题

增加方式如下:web.xml中加入  <listener>    <listener-class>org.springframework.web.util.IntrospectorCleanupListener</listener-class>  </listener>  org.springframework.web.util.IntrospectorCleanupListener源代码中对其的解释如下:  在Web应用程序关闭时IntrospectorC

[转]web.xml中webAppRootKey

web.xml中webAppRootKey ------------------------------------------------------------------------------------------------1. web.xml配置 <context-param> <param-name>webAppRootKey</param-name> <param-value>webapp.root</param-value>