flowable

springboot flowable6.5 节点自由跳转

∥☆過路亽.° 提交于 2020-08-09 18:47:33
Flowable6已经实现了流程节点间的跳转,本次就初探一下相关的API。 相关的示例代码在Flowable的开源代码中可以找到,具体的位置如下: \modules\flowable-engine\src\ test \java\org\flowable\engine\ test \api\runtime\changestate 代码: /** * 移动节点 * www.1b23.com */ @RequestMapping (value = "move/{proInstId}/{nodeId}/{toNodeId}" ) public void move( @PathVariable ( "proInstId" ) String proInstId, @PathVariable ( "nodeId" ) String nodeId, @PathVariable ( "toNodeId" ) String toNodeId) { runtimeService .createChangeActivityStateBuilder () .processInstanceId (proInstId) .moveActivityIdTo (nodeId, toNodeId) .changeState (); } runtimeService

最新Flowable 工作流引擎 OA办公系统 Springboot vue 前后分离 跨域

孤街浪徒 提交于 2020-08-09 17:18:00
1. 模型管理 :web在线流程设计器、预览流程xml、导出xml、部署流程 2. 流程管理 :导入导出流程资源文件、查看流程图、根据流程实例反射出流程模型、激活挂起 、 自由跳转 3. 运行中流程 :查看流程信息、当前任务节点、当前流程图、作废暂停流程、指派待办人 4. 历史的流程 :查看流程信息、流程用时、流程状态、查看任务发起人信息 5. 待办任务 :查看本人个人任务以及本角色下的任务、办理、驳回、作废、指派一下代理人 6. 已办任务 :查看自己办理过的任务以及流程信息、流程图、流程状态(作废 驳回 正常完成) 注:当办理完当前任务时,下一任务待办人会即时通讯收到新任务消息提醒,当作废和完结任务时, 任务发起人会收到站内信消息通知 1.代码生成器: [正反双向](单表、主表、明细表、树形表,快速开发利器)+快速表单构建器 freemaker模版技术 ,0个代码不用写,生成完整的一个模块,带页面、建表sql脚本、处理类、service等完整模块 2.多数据源: (支持同时连接无数个数据库,可以不同的模块连接不同数的据库)支持N个数据源 3. 阿里数据库连接池 druid ,安全权限框架 shiro( 菜单权限和按钮权限 ) , 缓存框架 ehcache 4. 代码编辑器, 在线模版编辑,仿开发工具编辑器 5.调用摄像头拍照 自定义裁剪编辑头像,头像图片色度调节 6

flowable 6.5.0 生成流程图片 png 中文乱码问题

我的未来我决定 提交于 2020-08-06 08:15:39
添加一个配置类,完事clean项目,重启,清理浏览器缓存,清理之前生成的流程图片 FlowableConfig import org.flowable.spring.SpringProcessEngineConfiguration; import org.flowable.spring.boot.EngineConfigurationConfigurer; import org.springframework.context.annotation.Configuration; //www.1b23.com @Configuration public class FlowableConfig implements EngineConfigurationConfigurer<SpringProcessEngineConfiguration> { @Override public void configure(SpringProcessEngineConfiguration engineConfiguration) { engineConfiguration.setActivityFontName("宋体"); engineConfiguration.setLabelFontName("宋体"); engineConfiguration.setAnnotationFontName("宋体

flowable 显示流程图 路径和节点 走过的节点描红,高亮

萝らか妹 提交于 2020-08-05 22:01:30
在正常的flowable就是显示当前节点,路径需要我们自己获取,特别是来回的驳回会导致节点混乱,这里主要就是如何正确的显示流程图 效果: 已经结束的流程 正在执行的流程 代码:1、生成图片 ​ // 源码 www.1b23.com public byte[] createImage2(String processInstanceId) { //1.获取当前的流程实例 ProcessInstance processInstance = runtimeService.createProcessInstanceQuery().processInstanceId(processInstanceId).singleResult(); String processDefinitionId = null; List<String> activeActivityIds = null; //2.获取所有的历史轨迹对象 List<HistoricActivityInstance> list = historyService.createHistoricActivityInstanceQuery() .processInstanceId(processInstanceId).list(); Map<String, HistoricActivityInstance> hisActivityMap =

运行官方 flowable-6.5.0 例子项目

夙愿已清 提交于 2020-07-29 08:53:32
1. 从官网下载 flowable-6.5.0 : https://flowable.com/open-source/downloads/ 下载完,解压后,打开目录 wars 2.找个干净的 tomcat8 把 wars 文件目录里面的 flowable-admin.war flowable-idm.war flowable-modeler.war flowable-rest.war flowable-task.war 共 5 个 war包放到tomact的 webapps 目录 3. 然后找到 tomcat / bin / startup.bat 启动 tomcat 会等待一段时间,所有war包都解压后 4.找到每个项目中的 ( www.1b23.com flowable项目源码) 比如:\webapps\flowable-admin\WEB-INF\classes application-dev.properties 这样的配置文件 修改:改成自己的数据库链接地址,数据库名flowable 自己创建,从flowable-6.5.0.zip里面database下面的creat/all 下的sql 脚本执行去建表 86张表 spring.datasource.driver-class-name =com.mysql.jdbc.Driver spring.datasource.url

flowable 工作流和 activiti 工作流的 前身后世

假装没事ソ 提交于 2020-07-29 03:50:57
关于新的activiti新团队与原有的团队重要开发人员我们罗列一下,细节如下: Tijs Rademakers,算是activiti5以及6比较核心的leader了。现在是flowable框架的leader。 Joram Barrez 算是activiti5以及6比较核心的leader了。目前从事flowable框架开发。 Salaboy Activiti Cloud BPM leader(Activiti Cloud BPM 也就是目前的activiti7框架) Tijs Rademakers以及Salaboy目前是两个框架的leader。 特此强调一点:activiti5以及activiti6、flowable是Tijs Rademakers团队开发的。 Activiti7是 Salaboy团队开发的。activiti6以及activiti5代码目前有 Salaboy团队进行维护。因为Tijs Rademakers团队去开发flowable框架了,所以activiti6以及activiti5代码已经交接给了 Salaboy团队(可以理解为离职之前工作交接)。目前的activiti5以及activiti6代码还是原Tijs Rademakers原有团队开发的。Salaboy团队目前在开发activiti7框架

bladex flowable前端改造(添加新的流程)

假如想象 提交于 2020-07-27 06:52:04
1.添加字典(必须),其中modelCheck必填,对应vue文件夹名称 2.添加vue文件 3.修改路由文件 先说下原理: 对应页面 然后: 对应start.vue中的 改方法指定了路由,但是没有指定明vue文件,下面的index.js指明了vue的位置 位置:\src\router\views\index.js 成功: 顺便说下后端加控制器,参照请假来做 来源: oschina 链接: https://my.oschina.net/u/4286372/blog/4279596

Flowable-idm not able to provide access to access Privileges to group

江枫思渺然 提交于 2020-05-04 07:02:41
问题 Thanks for looking into my question. I am new in flowable application. Login to flowable-idm portal, create a user ankit and then create a group claimManager where i added ankit user. In flowable-idm portal, go to Privileges section -> Access modeler application -> remove ankit user from user(if exist) -> go to group tab -> add group claimManager . Login to flowable-modeler portal with usename: ankit and this is issue where i am not able to login as i added group having ankit user. But when i

Flowable-idm not able to provide access to access Privileges to group

淺唱寂寞╮ 提交于 2020-05-04 07:02:40
问题 Thanks for looking into my question. I am new in flowable application. Login to flowable-idm portal, create a user ankit and then create a group claimManager where i added ankit user. In flowable-idm portal, go to Privileges section -> Access modeler application -> remove ankit user from user(if exist) -> go to group tab -> add group claimManager . Login to flowable-modeler portal with usename: ankit and this is issue where i am not able to login as i added group having ankit user. But when i

Flowable-idm not able to provide access to access Privileges to group

梦想的初衷 提交于 2020-05-04 07:02:32
问题 Thanks for looking into my question. I am new in flowable application. Login to flowable-idm portal, create a user ankit and then create a group claimManager where i added ankit user. In flowable-idm portal, go to Privileges section -> Access modeler application -> remove ankit user from user(if exist) -> go to group tab -> add group claimManager . Login to flowable-modeler portal with usename: ankit and this is issue where i am not able to login as i added group having ankit user. But when i