IntelliJ IDEA Plugin for BPMN designer

大城市里の小女人 提交于 2019-12-08 02:17:00

问题


I've found this post about BPMN files designer, I tried to open designer window in every way, but i can only open diagram preview. Did anyone use jBPM plugin and can tell me how can I open designer window?

Edit

For simplicity, i'm using this bpmn file:

<?xml version="1.0" encoding="UTF-8"?>

<definitions id="definitions"
xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL"
targetNamespace="http://www.activiti.org/bpmn2.0">

  <process id="helloWorld">

    <startEvent id="start" />
    <sequenceFlow id="flow1" sourceRef="start" targetRef="script" />
    <scriptTask id="script" name="HelloWorld" scriptFormat="groovy">
      <script>
        System.out.println("Hello world")
      </script>
    </scriptTask>
    <sequenceFlow id="flow2" sourceRef="script" targetRef="theEnd" />
    <endEvent id="theEnd" />

</process>

</definitions>

It's from tutorial


回答1:


You don't need any third-party plug-ins, the bundled plug-in works just fine. We've recorded a screencast which shows how to use it:

  • jBPM plugin: how to

Make sure you have at least 2016.3.x IntelliJ IDEA Ultimate version.



来源:https://stackoverflow.com/questions/43469842/intellij-idea-plugin-for-bpmn-designer

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!