我正在尝试使用Eclipse Juno创建我的第一个HelloWorld servlet,并在J2EE预览服务器中查看它。
这是我的Servlet类:
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/**
* Servlet implementation class HelloWorld
*/
public class HelloWorld extends HttpServlet {
private static final long serialVersionUID = 1L;
/**
* @see HttpServlet#HttpServlet()
*/
public HelloWorld() {
super();
// TODO Auto-generated constructor stub
}
/**
* @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
*/
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
response.setContentType("text/html");
PrintWriter pw = response.getWriter();
pw.println("<html>");
pw.println("<head><title>Hello World</title></title>");
pw.println("<body>");
pw.println("<h1>Hello World</h1>");
pw.println("</body></html>");
}
/**
* @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
*/
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
// TODO Auto-generated method stub
}
}
这是我的web.xml自动生成的web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
<display-name>HelloWorld</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
<servlet>
<description></description>
<display-name>HelloWorld</display-name>
<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>
当我选择“在服务器上运行”&gt; “J2EE预览”我明白了:
错误404 - 未找到
此服务器上没有上下文匹配或处理此请求。上下文 这个服务器已知的是:
的HelloWorld(/的HelloWorld)
我在哪里做错了?
答案 0 :(得分:1)
在“J2EE预览”服务器中,上下文路径是项目的名称。启动服务器时,将列出所有可用的上下文路径。
例如,如果您的应用程序名为“app1”,则您的URL将为“http:// localhost:8080 / app1 / HelloWorld”
答案 1 :(得分:0)
我遇到了同样的问题,无法使其发挥作用。 我创建了一个更简单的应用程序,只是一个hello world JSP页面。
这个过程非常基础,你创建一个web动态项目并在WebContent目录下创建一个index.jsp文件,这应该足以通过run - &gt;来启动你的应用程序。在服务器中运行 - &gt; J2EE预览但总是得到:
未找到404 此服务器上没有上下文匹配或处理此请求。 此服务器已知的上下文是: 测试(/ test)
我听说eclipse juno不像indigo那样稳定,我刚刚下载的indigo Java EE版本做得非常出色,并且没有问题。
编辑: 我忘了你可以下载另一个应用服务器,比如JBoss或Glassfish,并尝试在你的应用程序上运行,这应该可以解决你的问题。
您可以尝试通过删除工作区中的所有文件和文件夹来修复此问题,删除.metadata文件夹及其所有内容,启动eclipse并再次尝试这可能有效。
希望这可以帮到你。 此致!