我正在使用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);
}
我希望方法中的所有三个调用都应该使用三个不同的线程来完成。请解释如何操作。
答案 0 :(得分:0)
您可能只想在Java中分离三个线程来执行此操作。