无法运行java servelet

时间:2017-09-14 20:02:15

标签: java tomcat

Iam是java web编程和服务器的绝对开端。我试图用tomcat看到我的helloworld servelt的输出,但我不能得到运气。

import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;

public class helloworld extends HttpServlet {

public void doGet(HttpServletRequest request, HttpServletResponse response)
throws IOException, ServletException
    {
        PrintWriter out = response.getWriter();
        out.println("Hello, World!");
    }
}

我编译了上面的代码并将helloworld.class文件放在

web应用/对myApp / WEB-INF /类/ HelloWorld.class的

停止并启动tomcat并点击url而不是404。

http://localhost:8080/myApp/servlet/helloworld

我不知道这里有什么不对。

0 个答案:

没有答案