bpmn

使用zeebe DebugHttpExporter 查看zeebe 工作流信息

喜你入骨 提交于 2019-12-09 23:28:10
zeebe 提供了一个 DebugHttpExporter 可以方便的查看部署以及wokrflow 运行信息 以下是一个简单的运行试用,同时集成了prometheus,添加了一个简单的grafana dashboard 环境准备 docker-compose 文件 version: "3" services: operate: image: camunda/operate:1.1.0 ports: - "8080:8080" volumes: - "./application.yml:/usr/local/operate/config/application.yml" grafana: image: grafana/grafana ports: - "3000:3000" nginx-grpc-lb: image: openresty/openresty:alpine volumes: - "./nginx.conf:/usr/local/openresty/nginx/conf/nginx.conf" ports: - "27500:26500" prometheus: image: prom/prometheus volumes: - "./prometheus.yml:/etc/prometheus/prometheus.yml" ports: - "9090:9090"

How to adjust the width of a pool \ Lane in visio Shape using c#

為{幸葍}努か 提交于 2019-12-08 12:30:26
问题 Hi i was able to adjust all the shapes width and height of visio shapes programatically, but i was not able to adjust the width of the Pool \ Lane shape from visio BPMN Shapes.Why doesnt the width is not getting adjusted. shape.get_CellsSRC((short)Microsoft.Office.Interop.Visio.VisSectionIndices. visSectionObject, (short)Microsoft.Office.Interop.Visio.VisRowIndices. visRowXFormIn, (short)Microsoft.Office.Interop.Visio.VisCellIndices.visXFormWidth).ResultIU = 15; whatever i tried it only takes

How to create user flow diagrams with BPMN?

限于喜欢 提交于 2019-12-08 05:09:31
问题 Wireframes are a kind of blueprints when designing frontends. I recently came across an extension to that called "user flows" or "UI flows" , which visualizes parts of the interactivity of the user interface (UI) as a flow chart. They look nice but are often not easy to user further for programming purposes (like generating code). If you are lucky, you can export an XML-representation of a user flow, but often they just look pretty and are only accessible as (non-vector) graphics. That is why

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=

How to query the position of a process instance?

你。 提交于 2019-12-06 09:35:07
问题 I want to get the current position of a single instance in my process. Is it possible to get the name of the activity additionaly to the id as return value? 回答1: You can get the current position of your process instance using the following code, which will also give you the name of the activity(ies) when the process waits in multiple position. package org.camunda.bpm; import java.util.HashMap; import java.util.List; import java.util.Map; import org.camunda.bpm.engine.ProcessEngine; import org

Is there a Java API that creates BPMN? [closed]

喜你入骨 提交于 2019-12-06 08:37:11
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . Is there a way to programmatically create BPMN 2.0 via a Java API? I'm aware that I can use a graphical modeling tool or create the BPMN XML by hand but I'm looking for a way to create it dynamically at run-time. In my case, the BPMN will be executed through jBPM. The jBPM docs say you can use their API to

Camunda BPMN - Task listener vs Execution listeners

丶灬走出姿态 提交于 2019-12-06 01:35:41
问题 I've been using Camunda BPMN 2.0 for one of my workflow applications. In one of my service tasks, I created an execution listener at the start event and a task listener at the create event. I'm not sure whether it's proper to assign these simultaneously at the start event. If it's correct, which one of them will be getting executed first - Execution listener or Task Listener, at start or create event, respectively ? 回答1: Task listeners can only be used with user tasks, since they provide

How to specify which start event should be called from a BPMN callActivity

依然范特西╮ 提交于 2019-12-05 18:42:49
From http://www.omg.org/spec/BPMN/2.0.2/PDF on page 238: If the Process is used as a global Process (a callable Process that can be invoked from Call Activities of other Processes) and there are multiple None Start Events, then when flow is transferred from the parent Process to the global Process, only one of the global Process’s Start Events will be triggered. The targetRef attribute of a Sequence Flow incoming to the Call Activity object can be extended to identify the appropriate Start Event. How does one go about extending the targetRef attribute? Doesn't it have to be a valid IDREF?

Migrating Activiti tasks from old process to new process

こ雲淡風輕ζ 提交于 2019-12-05 07:10:28
I have an Activiti project for some business process. The problem is about migration. An existing process has some unfinished tasks. I want to modify the existing process by adding a new step. Now, when I create a new task, this new task will be processed according to the updated process. And unfinished tasks will be processed according to the old process. Let's take the following example: https://spring.io/blog/2015/03/08/getting-started-with-activiti-and-spring-boot In this example, consider the following line: taskVariables.put("telephoneInterviewOutcome", true); Assume that, I have some

eclipse安装Activiti BPMN 2.0 designer插件究极脑残版

戏子无情 提交于 2019-12-05 05:51:03
打开 Help--Install New Software。在如下面板中,点击 Add 按钮,然后填写下列字段: Name:Activiti BPMN 2.0 designer Location:http://activiti.org/designer/update/ 这是傻瓜式安装,可以碰碰运气,如果不行就按照下面的离线安装方式。 首先,下载activiti-designer-5.14.1.zip,地址是 http://www.activiti.org/designer/archived/activiti-designer-5.14.1.zip (翻墙下载速度更快)也可下载下面的百度盘链接,然后打开eclipse的安装目录,删除configuration里面的org.eclipse.update,然后下载jar包,这三个jar包和压缩包在百度盘共享了。准备工作完毕,打开eclipse,打开Help--Install New Software,先记得删除原来安装失败的Activiti BPMN 2.0 designer,删除是点击 然后选择 点击ok,然后再点击add选择 然后name框输入Activiti BPMN 2.0 designer,忘了说了,拔掉网线(很重要),然后一路狂点ok,next,就可以了,这是我试了网上各种方法后总结的,绝壁能成功,如果不成功,那你只有一条路