我的系统有tomcat七,所有的文件都在webapp下。文件结构是
web应用/ WelcomeForm / 网络/ WelcomeForm.html WEB-INF / web.xml中 LIB / 类/ 你好/ HelloWorldServlet.java HelloWorldServlet.class
网络文件夹包含WelcomeForm.html。 WEB-INF拥有web.xml。 lib包含servlet-api.jar,类包含HelloWorldServlet.java。 hmtl文件运行正常但我无法运行java文件,因为它返回消息:
HTTP状态404 - / hello
输入状态报告
message / hello
description请求的资源(/ hello)不可用。
文件的代码如下:
WelcomeForm.html
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Welcome Form</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
<form method="POST" action="<%=request.getContextPath()%>/hello">
<font size="10" color="red">Hello World!</font><BR>
Type your first name and click submit button <input TYPE=TEXT NAME="username" SIZE=20>
<P><input type="submit" value="Submit">
</form>
</body>
</html>
的web.xml
<?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">
<servlet>
<servlet-name>HelloWorld</servlet-name>
<servlet-class>hello.HelloWorldServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>HelloWorld</servlet-name>
<url-pattern>/hello</url-pattern>
</servlet-mapping>
<session-config>
<session-timeout>
30
</session-timeout>
</session-config>
</web-app>
HelloWorldServlet.java
package hello;
import java.io.IOException;
import javax.servlet.ServletException;
import java.io.*;
import javax.servlet.*;
import javax.servlet.annotation.*;
import javax.servlet.http.*;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.PrintWriter;
public class HelloWorldServlet extends HttpServlet {
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/html");
doPost(request,response);
}
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
String name = request.getParameter("username");
PrintWriter out = response.getWriter();
out.write("Your Name is :" );
out.print(name);
}
}
我做错了什么?
答案 0 :(得分:1)
你的树不正确。必须将webapp的文件夹(或war)放在Tomcat的webapps文件夹中。
直接位于webapp的根文件夹(Welcome form
的情况下,但是你应该真的避免文件夹名称中的空格,因为它们必须在URL中编码并且在必要时使事情更难),必须有一个名为的文件夹WEB-INF
。
servlet-api.jar不能位于WEB-INF / lib文件夹中。 Tomcat显然已经在它的类路径中有这个jar了。
如果网络应用文件夹的名称为Welcome form
,为什么要使用网址/labs/lab10/WelcomeForm/
。该网址应为/Welcome form/...
在web.xml文件中,<servlet-class>
元素必须是servlet类的完全限定名。因此,如果该类名为HelloWorldServlet并且位于com.foo.bar包中,则该元素必须包含com.foo.bar.HelloWorldServlet
。
当然,<servlet-mapping>
元素用于将给定的servlet映射到URL(或一组URL)。因此,您应该使用此URL来调用您的servlet:http://hostname/Welcome form / HelloWorldServlet。
总之,你有一切都错了。您应该重新阅读有关servlet和Web应用程序的书籍或教程。这是给你的一个:http://docs.oracle.com/javaee/5/tutorial/doc/bnadp.html