我正在为某些服务器测试编写非常粗糙的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,并忽略所有帖子,直到作业完成。

最佳答案

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

    public class Application{
           private static boolean inExecution = false;

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

           }
     }

07-27 14:39