当前位置: 代码迷 >> Java相关 >> 为什么不能由http://localhost:8080/servlet/HelloWorld成功运行?
  详细解决方案

为什么不能由http://localhost:8080/servlet/HelloWorld成功运行?

热度:509   发布时间:2008-06-07 14:57:47.0
为什么不能由http://localhost:8080/servlet/HelloWorld成功运行?
为什么不能由http://localhost:8080/servlet/HelloWorld成功运行?
没有为这个类写web.xml文件。
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;

public class HelloWorld extends HttpServlet {
    private static final long serialVersionUID = 1L;
    public void doGet(HttpServletRequest request,
                      HttpServletResponse response) throws IOException, ServletException {
        PrintWriter out = response.getWriter();
        out.println("No URL!");
   
    }
}

运行有web.xml的类正常!

[[it] 本帖最后由 zzxwill 于 2008-6-7 14:59 编辑 [/it]]
搜索更多相关的解决方案: HelloWorld  localhost  servlet  运行  

----------------解决方案--------------------------------------------------------
应该属于配置的问题
----------------解决方案--------------------------------------------------------
使用servlet应该配置相应的web.xml
----------------解决方案--------------------------------------------------------
  相关解决方案