我使用 Activiti 作为 BPMN 2.0 工作流程管理器。 Activiti 建模器是一个图形用户界面,旨在在浏览器中使用来对这些流程进行建模。
我想通过以下方式自定义编辑器界面:
- 删除不需要的 bpmn 元素,以便 UI 仅显示相关任务类型
- 禁用特定任务的属性,以便 UI 仅显示相关任务
- 添加具有
我读过的 预定义属性的新任务有关模板集的信息,但我不确定这是否符合我的要求。用户指南中也有关于使用在 Eclipse 中运行而不是在浏览器中运行的 Activiti Designer 时类似的教程: 扩展 Activiti Designer(尽管它被标记为实验性的)
模板集是可行的方法吗?它们满足我的要求吗?有任何指向正确方向的指示吗?
I use Activiti as BPMN 2.0 workflow manager. The Activiti modeler is a graphical user interface intended to use in the browser to model these processes.
I want to customize the editor interface in the following way:
- removal of unneeded bpmn elements so that the UI shows only the relevant task types
- disabling attributes for specific tasks so that the UI shows only the relevant ones
- addition of new tasks with predefined attributes
I read something about Stencil Sets, but I am not sure if that fits to my requirements. Also there is tutorial in the User Guide for something similar when using the Activiti Designer which runs in Eclipse and not in the Browser: Extending Activiti Designer (it is marked as experimental though)
Are Stencil Sets the way to go and do they fulfill my requirements? Any pointers to the right direction?
发布评论
评论(2)
如果您签出 Signavio 核心组件(Activiti Modeler 所基于的组件)、修改源代码并重建 Web 应用程序,您应该能够实现此目标。
http://code.google.com/p/signavio-core-components/
You should be able to achieve this if you checkout Signavio Core Components (on which Activiti Modeler is based), modify the sources and rebuild the web app.
http://code.google.com/p/signavio-core-components/
您可以检查下面的链接,您可以在其中获得一些修改模板的线索,并且您的部分工作将完成。
如何自定义 Activiti-Signavio 建模器
但我仍然是寻找生成可以直接执行到活动的 bpmn2.0 xml。
如果能够制作的话我会再次发布。
You can check the link below where you can get some clues to modify stencils and one of part of your work will be done.
How to customize Activiti-Signavio modeler
But still I am looking for generating bpmn2.0 xml which can be directly get executed to activity.
I will post again if able to produce it.