输出流到网页

时间:2013-11-14 00:43:55

标签: java html http tomcat servlets

我正在为一些服务器测试编写一个非常粗略的Web界面。

我的servlet代码基本上如下所示:

import Application.*;

@WebServlet("/runtest")
public class RunTestServlet extends HttpServlet {

    protected void doGet(HttpServletRequest request, HttpServletResponse response) 
throws ServletException, IOException {
        response.setContentType("text/html");
        PrintWriter out = response.getWriter();
        out.println(View.runTestPageHTML());
    }
    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        Application.runTest();
        doGet(request,response);
    }
}
class View{
    public static String runTestPageHTML(){
        return "<html><body><form><submit value='run'></form></body></html>";
    }
}

这有两个问题。如果重新发送表单,Tomcat可以并且将开始新的工作,并且没有关于工作进度的反馈。

我基本上希望Application.runTest()将所有获取路由重新路由到http://<server>/runtest到logger.out并忽略所有帖子,直到作业完成。

1 个答案:

答案 0 :(得分:0)

你的工作在Application.runTest(),对吗? 如果runTest()是静态方法,则可以使用全局变量来控制每个请求的一次执行。

    public class Application{
           private static boolean inExecution = false;

           public static void runTest(){
              if(!inExecution){
                 inExecution = true;
                 //(...) yout job
                 inExecution = false;
              }

           }
     }