真有意思,  错误提示如此清楚明白,  你为什么不看看呢?通常有web-app这个标签  应该在  ROOT->web-inf 下面的  web.xml  中,  这个文档启动是会读的

解决方案 »

  1.   

    同意楼上的,web.xml是个非常重要的文件
      

  2.   

    谢谢楼上两位,因为才接触java,所以很多配置不懂,我看了一下root\web-inf\web.xml内容,如下:
      <?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>
    这个配置文件里该怎样修改呢?请不吝赐教
      

  3.   

    不是吧?怎么
    <web-app>
    </web-app>
    里面什么都没有?
      

  4.   

    不关配置的事。这是tomcat5.02的。
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!--
      Copyright 2004 The Apache Software Foundation  Licensed under the Apache License, Version 2.0 (the "License");
      you may not use this file except in compliance with the License.
      You may obtain a copy of the License at      http://www.apache.org/licenses/LICENSE-2.0  Unless required by applicable law or agreed to in writing, software
      distributed under the License is distributed on an "AS IS" BASIS,
      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      See the License for the specific language governing permissions and
      limitations under the License.
    --><web-app 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"
        version="2.4">  <display-name>Welcome to Tomcat</display-name>
      <description>
         Welcome to Tomcat
      </description>
    <!-- JSPC servlet mappings start -->    <servlet>
            <servlet-name>org.apache.jsp.index_jsp</servlet-name>
            <servlet-class>org.apache.jsp.index_jsp</servlet-class>
        </servlet>    <servlet-mapping>
            <servlet-name>org.apache.jsp.index_jsp</servlet-name>
            <url-pattern>/index.jsp</url-pattern>
        </servlet-mapping><!-- JSPC servlet mappings end --></web-app>
      

  5.   

    web-app中可以没有内容,
    估计在什么地方加了一个汉字空格。建议从新key一遍。或从其他地方copy一份后修改。