尝试调用 servlet 时遇到错误 404
Posted
技术标签:
【中文标题】尝试调用 servlet 时遇到错误 404【英文标题】:ERROR 404 encountered when attempting to call a servlet 【发布时间】:2011-12-23 09:54:35 【问题描述】:我正在尝试使用 apache tomcat 7.0 tomcat7 来访问 java servlet。
我创建了一个文件夹来保存我所有的 webapp 文件在 webapps 的 ROOT 文件夹下。 文件结构是这样的。
Tomcat 7.0/webapps/myWebApp HelloHome.html WEB-INF web.xml 类 com 培训 HelloServlet.java HelloServlet.class使用这个 web.xml 代码调用 servlet:
<?xml version="1.0" encoding="ISO-8859-1"?>
<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">
<!-- To save as "hello\WEB-INF\web.xml" -->
<servlet>
<servlet-name>HelloWorld</servlet-name>
<servlet-class>com.training.HelloServlet</servlet-class>
</servlet>
<!-- Note: All <servlet> elements MUST be grouped together and
placed IN FRONT of the <servlet-mapping> elements -->
<servlet-mapping>
<servlet-name>HelloWorld</servlet-name>
<url-pattern>/sayhello</url-pattern>
</servlet-mapping>
</web-app>
实际的java代码(编译生成classes文件夹下的类文件):
//To save as "<TOMCAT_HOME>\webapps\hello\WEB-INF\classes\HelloServlet.java"
package com.training;
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
public class HelloServlet extends HttpServlet
@Override
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws IOException, ServletException
// Set the response MIME type of the response message
response.setContentType("text/html");
// Allocate a output writer to write the response message into the network socket
PrintWriter out = response.getWriter();
// Write the response message, in an HTML page
try
out.println("<html>");
out.println("<head><title>Hello, World</title></head>");
out.println("<body>");
out.println("<h1>Hello, world!</h1>"); // says Hello
// Echo client's request information
out.println("<p>Request URI: " + request.getRequestURI() + "</p>");
out.println("<p>Protocol: " + request.getProtocol() + "</p>");
out.println("<p>PathInfo: " + request.getPathInfo() + "</p>");
out.println("<p>Remote Address: " + request.getRemoteAddr() + "</p>");
// Generate a random number upon each request
out.println("<p>A Random Number: <strong>" + Math.random() + "</strong></p>");
out.println("</body></html>");
finally
out.close(); // Always close the output writer
然后我点击:http://localhost:8080/myWebApp/sayhello 并得到一个 404 错误。关于我做错了什么有什么想法吗?
【问题讨论】:
您的 servlet 不能在默认包中。将其放入一个包中,使用新的包信息更新您的 web.xml。 将我的类文件放在一个包中。类 -> com -> 培训 -> HelloServlet.class。还将 web.xml 文件的myWebApp 应该在 ROOT 旁边,而不是在它里面。
Tomcat 7 Deployment
【讨论】:
我试过这样做,但只是点击localhost:8080/myWebApp 会产生 404 错误 重启 tomcat... ,将 hellohome.htm 添加到欢迎文件列表并使其加载 localhost:8080/myWebApp/sayhello。然后尝试 localhost:8080/myWebApp 如果你只使用/myWebApp,它会在welcome-file-list 中寻找一个应该在你的web.xml 中的文件,它不会自动选择你的HelloHome.html 和你的servlet。 【参考方案2】:将您的 myWebApp.war 文件放在 webapps 文件夹而不是 ROOT 下,重新启动 Tomcat,然后尝试相同的 URL。
【讨论】:
【参考方案3】:尝试将您的 servlet 放入一个包中,并在 web.xml 中相应地注册它。 我记得几年前我在使用旧版本的 tomcat 时遇到过这个问题。
【讨论】:
【参考方案4】:ROOT 将有 tomcat 演示应用程序, 将您的 myWebApp 文件夹放在 $tomcat_home/webapps 中(不在 ROOT 中)
重新启动 tomcat 并尝试相同的 URL
【讨论】:
【参考方案5】:编辑您的 web.xml 文件并添加以下标签:
【讨论】:
以上是关于尝试调用 servlet 时遇到错误 404的主要内容,如果未能解决你的问题,请参考以下文章
无法从 jsp 调用 servlet 文件 - 发现 404 错误 [重复]
java servlet 出现 404 错误。看不到html文件
Xampp 错误“此外,在尝试使用 ErrorDocument 处理请求时遇到 404 Not Found 错误。”