我是 servlet 的新手。我为此使用 eclipse juno。我在运行我的程序时遇到了麻烦。我的代码是
package sTraining;
import java.io.*;
import javax.servlet.*;
public class Servlet1 implements Servlet{
ServletConfig config=null;
public void init(ServletConfig config){
this.config=config;
System.out.println("servlet is initialized");
}
public void service(ServletRequest req,ServletResponse res)
throws IOException,ServletException{
res.setContentType("text/html");
PrintWriter out=res.getWriter();
out.print("<html><body>");
out.print("<b>hello simple servlet</b>");
out.print("</body></html>");
}
public void destroy(){System.out.println("servlet is destroyed");}
public ServletConfig getServletConfig(){return config;}
public String getServletInfo(){return "copyright 2007-1010";}
}
我收到此错误 [http://localhost:8080/Test/WEB-INF/classes/sTraining/Servlet1.java][1] 尽管我的 web .xml 文件中有这个东西
<servlet>
<description></description>
<display-name>Servlet1</display-name>
<servlet-name>Servlet1</servlet-name>
<servlet-class>servlet.Servlet1</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>Servlet1</servlet-name>
<url-pattern>/Servlet1</url-pattern>
</servlet-mapping>
为什么这没有运行?我的代码很好。我第一次运行这个页面时它运行,但是在我的第二个程序之后运行这个程序它没有运行,第二个程序也没有运行。