(4)jBPM websale代碼學習: task.jsp(jBPM的兩種分支策略)

來源:互聯網
上載者:User

對於分支,jBPM有兩種主要的實現方法:decision和多transition。

1)decision用來實現自動的分支判斷

   "  <decision name='hongsoft decision'>" +
    "    <transition to='learning jBPM'/>" +
    "    <transition name='imporant' to='forget about hongsoft'>" +
    "      <condition>#{hongsoft years old > 80}</condition>" +
    "    </transition>" +
    "    <transition name='lea' to='learging jBPM too'>" +
    "      <condition>#{hongsoft years old > 18}</condition>" +
    "    </transition>" +
    "  </decision>"

對於這樣的節點,流程執行是不會停止的;而會自動判斷應該轉向到哪個轉移,並自動執行下去。

2)多transition用來實現人工的分支判斷

我們看看task.jsp的如下片斷:

<c:choose>
    <c:when test="${!empty taskBean.availableTransitions}">
      Task Actions:
      <c:forEach var="availableTransition" items="${taskBean.availableTransitions}">
        <c:set var="availableTransition" scope="request" value="${availableTransition}"/> 
        <h:commandButton id="transitionButton" action="#{taskBean.saveAndClose}" value="#{availableTransition.name}"/>
      </c:forEach>
    </c:when>
    <c:otherwise>
      <h:commandButton id="transitionButton" action="#{taskBean.saveAndClose}" value="Save and Close Task"/>
    </c:otherwise>
  </c:choose>

首先判斷活動是否有多個transitions,如果有,那麼列出每個transition,由actor手工點擊驅動流程的運轉;

如果沒有,那麼只有一個transition,可以直接完成該任務。

對應的流程定義如下:

<task-node name="evaluate web order">
    <task swimlane="salesman">      
    </task>
    <transition name="ok" to="salefork" />
    <transition name="more info needed" to="fix web order data" />
  </task-node>

也就是直接在NODE中配置2個或者多個transition,就可以實現分支;這個也能夠實現流程的回退功能。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.