jbpm

Which workflow engine to choose? [closed]

放肆的年华 提交于 2019-12-20 08:29:09
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . We are currently in the process of evaluating a BPM engine and I'd really appreciate the community input. I am doing my own due

Which workflow engine to choose? [closed]

末鹿安然 提交于 2019-12-20 08:29:02
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . We are currently in the process of evaluating a BPM engine and I'd really appreciate the community input. I am doing my own due

Hibernate, getting duplicate values

强颜欢笑 提交于 2019-12-19 03:12:08
问题 I am writing a very simple query, but I am getting duplicate values for some reason. Criteria cr = session.createCriteria(ProcessInstance.class, "p") .add(Restrictions.isNull("end")); @Cleanup ScrollableResults sr = cr.scroll(ScrollMode.FORWARD_ONLY); while (sr.next()) { pi = (ProcessInstance) sr.get(0); String id = pi.getId(); //Getting duplicate values } The pi.getId() returns duplicate values. ie: *9,9,10,10,11,11 etc* However, running this query directly in mysql SELECT * FROM JBPM

JBPM6 Service task to execute java code

五迷三道 提交于 2019-12-17 20:00:01
问题 I am new in JBPM6. My scenario is like this that i want to execute some java code using JBPM service task.From documentation i am not able to understand how to use domain specific process and Work Item Handler in this type of code. If someone have sample example of it please share.That will be very much helpful. Thank you in advance. 回答1: Here is how to add a handler inside a Eclipse maven project. I call it the Awesome handler, but your should pick a more specific name. 1) First create a

How to access a form variable in HTML component in JBPM7.13

自古美人都是妖i 提交于 2019-12-13 20:14:55
问题 I have created a human task form which has only one variable as a input, I want to access that variable in the HTML component I am adding to display the value. I am not finding any way to achieve this, please help. I want to display the value of the variable in the HTML component. 来源: https://stackoverflow.com/questions/56236321/how-to-access-a-form-variable-in-html-component-in-jbpm7-13

How to do BPEL,BPM deployment in JBoss AS7/EAP

佐手、 提交于 2019-12-13 07:29:00
问题 Jboss says to deploy BPEL applications in Either EAP or AS7 servers. I could nt deploy BPEL applications in Any of those servers. When searched in google, Some posts says Switchyard is better to use for BPEL or BPM applications and its been aquired by JBoss and release by JBoss as JBossFuse. I tried JBossFuse as well, JBossFuse cannot detect BPEL or BPM applications either through Eclipse. I have tried WSO2 and it was better than JBoss servers. I would like to use JBoss stack of products as

How can I read data from MySQL database into a process in jBPM Web Designer?

喜你入骨 提交于 2019-12-13 06:28:23
问题 In the default "evaluation" example in jBPM 5.4, I want to replace the actors "john" and "mary" with actors defined in a file or in a database, if possible, through the jbpm web designer. How can I do that? I have searched the web and the forums and I found no solution for this. Thanks for your help. 回答1: You can integrate mysql with jbpm5 as shown here Also you can write java handlers to fetch data from files or databases and then use #{expression} to assign actor id dynamically. Comment if

Customize jBPM KIE Workbench Home Page

倖福魔咒の 提交于 2019-12-13 04:48:32
问题 I am using jbpm 6.2 and want to customize the KIE Workbench Homepage. By customize i mean, i would like to update the layout, color theme and css. Highly appreciate any guidance. Regards, Arsalan. 回答1: As jl987 said, you want to look in jbpm-installer\lib\jbpm-console-6.2.0.Final-wildfly-8.1.0.Final.war archive. Then you can modify the files you need - login.jsp etc. 来源: https://stackoverflow.com/questions/29899109/customize-jbpm-kie-workbench-home-page

Migration of JBPM Processes from v5.5 to 6 and finally to 7

强颜欢笑 提交于 2019-12-13 03:54:25
问题 I need to migrate my project with drools and JBPM 5.5 to 6 and finally to 7.15. I tried importing my workflow bpmn file (bpmn2 behavior) and it could not work properly. I am using eclipse BPMN plugin. We have made extensive use of Signal events using BPMN process editor. Looking at the xml, they are configured as intermediateCatchEvent. However the same dont work in JBPM6 or later versions where the signal events need to be Start event with type as Signal. So, when I manually deleted the node

工作流引擎选择(为何使用activiti)

*爱你&永不变心* 提交于 2019-12-12 18:14:48
之前在选择工作流引擎时曾经在activiti和jbpm之间有过比较,当时做出的决定是使用jbpm,但实际开发过程中发现这个选择是不合适的。目前我们改为选择Activiti作为工作流模块的引擎,理由如下: 1,Activiti拥有更简洁健壮的接口 JBPM自从版本五后,便重启炉灶,完全抛弃了JBMP4的代码基础,重新基于drools进行了实现。JBPM5,JBPM6似乎缺少一个合格的系统架构师,其接口设计匪夷所思,基本上是按照drools的接口再提供了一套JBPM接口,同名的接口,实现类不断重复出现,代码体系十分混乱。 一个典型的例子,同样是查询待办事项,在JBPM中接口如下: List<TaskSummary> getTasksAssignedAsBusinessAdministrator(String userId, String language); List<TaskSummary> getTasksAssignedAsExcludedOwner(String userId, String language); List<TaskSummary> getTasksAssignedAsPotentialOwner(String userId, String language); @Deprecated List<TaskSummary>