如何在Struts2 Web应用程序中使用多线程概念?

时间:2015-10-28 05:28:46

标签: java multithreading struts2

我正在使用Struts2框架的Web应用程序。我有一个有很多方法的类,其中一个是

  private void callMethod()
    {
      setUnreadReceiptCount(wrapper.getWorkFlowCount(us, "unread", "receipt",Constants.Open));
        setWorklistFilesCount(wrapper.getWorkFlowCount(us, "unread", "file","worklist"));
       mp=wrapper.getFileWorklist(us,stat,"","","",Constants.FilterbyFileReceivedDate,Constants.sortOrderDsc,next,10);
     }

我希望方法中的所有三个调用都应该使用三个不同的线程来完成。请解释如何操作。

1 个答案:

答案 0 :(得分:0)

您可能只想在Java中分离三个线程来执行此操作。