找茬。
我在网上博客,看到的不止一个这样写,于是试了一下,结果tomcat都运行不了了,也不能就这样算了,还是问问高手们到底哪出问题了。
他是这样说的
***********************************************************************
做好上面步骤后,要运行你个人的servlet还需要做些修改,分别要修改两个文件(web.xml, server.xml)
(1)首先要搞好工作目录的问题:
我在我的E:Tomcat 4.1webapps目录下,创建一个我的工作目录 myServlets,跟着在myServlets下创建
WEB-INF目录,在WEB-INF目录下再创建 classes 目录,这个classes 目录是用来存放你编译好的.class(即是你要运行的servelt文件)
我的个人全路径为: E:Tomcat 4.1webappsmyServletsWEB-INFclasses
(2)跟着编写一个 HelloWorld.java 并编译;代码如下:
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
public class HelloWorld extends HttpServlet {
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws
IOException,
ServletException {
response.setContentType( "text/html ");
PrintWriter out = response.getWriter();
out.println( " <html> ");
out.println( " <head> ");
out.println( " <title> Hello World! </title> ");
out.println( " </head> ");
out.println( " <body> ");
out.println( " <h1> Hello World! </h1> ");
out.println( " </body> ");
out.println( " </html> ");
}
}
编译后,将文件都复制到刚才新建好的E:Tomcat 4.1webappsmyServletsWEB-INFclasses目录下
(3)(到了要修改web.xml文件了)
将E:Tomcat 4.1conf目录下的 web.xml文件复制到刚才新建的E:Tomcat 4.1webappsmyServletsWEB-INF 目录下,用记事本打开,并添加一下内容:
(!!!!!绝对要注意了,添加的内容必须放置在 </description> 跟 </web-app> 之间,而不是直接在 </web-app> 后面添加,我个人就是因为直接在 </web-app> 后添加,而搞了很久,最后成功了就是在这里,不知道笑还是哭好××××,就是这么一点东西成大局,所以大家平时要注意细节的东西)
添加好的全部代码如下:(其中的 HelloWorld为刚才编译好的.class文件名,大家按自己的修改)
<?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>
<display-name> Welcome to Tomcat </display-name>
<description>
Welcome to Tomcat
</description>
<servlet>
<servlet-name> HelloWorld </servlet-name>
<servlet-class> HelloWorld </servlet-class>
</servlet>
<servlet-mapping>
<servlet-name> HelloWorld </servlet-name>
<url-pattern> /HelloWorld </url-pattern>
</servlet-mapping>
</web-app>
(4)(修改server.xml文件)
用记事本打开 E:Tomcat 4.1conf 下的 server.xml文件
并找到一下一段内容:
<Context path= "/examples " docBase= "examples " debug= "0 "
reloadable= "true " crossContext= "true ">
修改如下:
<Context path= "/myServlets " docBase= "myServlets " debug= "0 "
reloadable= "true " crossContext= "true ">
其中/myServlets就是指刚才新建的工作目录(即E:Tomcat 4.1webappsmyServlets)
保存修改。
(三)
好了,一切搞掂,接下来当然是运行servelt拉,启动Tomcat(即startup.bat),打开浏览器,输入http://localh