我正在制作一个使用Activiti的网络应用,它有2个并行任务,我希望用户能够一次完成。我不太清楚如何做到这一点。我已经玩弄了提交一个大表单的想法,然后将其拆分在服务器上,但我不确定如何解决这个问题。理想情况下,我一次提交2个表格似乎是合乎逻辑的方式,但我不确定这是否可行。
我的JSP表单:
<form action="CompleteTask" method="post">
<c:forEach items="${formProperties}" var="property" varStatus="status">
${property.getName()}:
<br />
<c:set var="type" value="${property.getType().getName()}" />
<c:if test="${type == 'string'}">
<c:if test="${property.isRequired() == 'true' }">
<input type="text" name="${property.getId()}" value="${property.getValue()}" required /><br />
</c:if>
<c:if test="${property.isRequired() == 'false' }">
<input type="text" name="${property.getId()}" value="" /><br />
</c:if>
</c:if>
<c:if test="${type == 'long'}">
<c:if test="${property.isRequired() == 'true' }">
<input type="text" name="${property.getId()}" value="${property.getValue()}" required /><br />
</c:if>
<c:if test="${property.isRequired() == 'false' }">
<input type="text" name="${property.getId()}" value="" /><br />
</c:if>
</c:if>
<c:if test="${type == 'date'}">
<c:if test="${property.isRequired() == 'true' }">
<input type="date" name="${property.getId()}" value="" required /><br />
</c:if>
<c:if test="${property.isRequired() == 'false' }">
<input type="date" name="${property.getId()}" value="" /><br />
</c:if>
</c:if>
<c:if test="${type == 'enum'}">
<select name="${property.getId()}">
<c:forEach var="entry" items='${property.getType().getInformation("values")}'>
<option value="${entry.key}">${entry.value}</option>
</c:forEach>
</select><br /><br />
</c:if>
</c:forEach>
<input type="hidden" id="taskId" name="taskId" value="${taskList.get(0).getId()}" /><br />
</form>
此表单位于forEach循环中,因此根据有多少任务(在本例中为2)创建多个版本。
我目前用于完成任务的servlet代码:
ProcessEngine processEngine = ProcessEngines.getDefaultProcessEngine();
Map<String, Object> params = new HashMap<String, Object>();
Enumeration<String> parameterNames = request.getParameterNames();
while (parameterNames.hasMoreElements()) {
String paramName = parameterNames.nextElement();
String[] paramValues = request.getParameterValues(paramName);
String paramValue = paramValues[0];
if(!paramName.equals("submit")){
System.out.println(paramName+ " - " + paramValue);
params.put(paramName, paramValue);
}
}
String taskId = request.getParameter("taskId");
TaskService taskService = processEngine.getTaskService();
Task t = taskService.createTaskQuery().taskId(taskId).singleResult();
taskService.complete(t.getId(), params);
答案 0 :(得分:1)
你是对的 - 最好创建一个请求,然后在服务器端运行2个进程。但是,您必须同步这些过程,获得两个答案,然后将它们组合成一个完整的答案。
另一种方法是拨打2 AJAX个电话。但在这种情况下,您必须在客户端(浏览器)端执行类似的同步。
但是,一般来说,更好的方法是简化设计并提供简单的单一请求/响应。
答案 1 :(得分:0)
我不确定需要并行流程但只需要一个用户任务的业务案例。似乎您可以收集所需的信息并在此之后进行分支。但是,如果业务逻辑必须使用此模式,那么BPMN确实支持使用消息传递/信号的功能。 在其中一个并行路径上使用单个用户表单。其他路径没有用户任务,而是等待消息或信号。 然后在收集了您需要的详细信息后,使用信号发送事件任务到&#34;发布&#34;其他平行路径。