本文介绍了用于BPMN设计器的IntelliJ IDEA插件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我发现关于BPMN文件设计师,我试图以各种方式打开设计器窗口,但我只能打开图表预览。有没有人使用jBPM插件,可以告诉我如何打开设计器窗口?
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?
为简单起见,我正在使用这个bpmn文件:
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>
来自
推荐答案
您不需要任何第三方插件,捆绑的插件工作正常。我们录制了一个截屏视频,展示了如何使用它:
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
确保你有至少2016.3.x IntelliJ IDEA终极版。
Make sure you have at least 2016.3.x IntelliJ IDEA Ultimate version.
这篇关于用于BPMN设计器的IntelliJ IDEA插件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!