activiti自己定义流程之Spring整合activiti-modeler实例(六):启动流程
1.启动流程并分配任务是单个流程的正式開始,因此要使用到runtimeService接口。以及相关的启动流程的方法。我习惯于用流程定义的key启动,由于有多个版本号的流程定义时,用key启动默认会使用最新版本号。同一时候,由于启动中查询了流程部署时xml文件里流程节点的信息。也用到了repositoryService及相关方法。
2.后台业务代码,
(1)自己定义的申请单实体类(为的目的仅仅为了跑通整个流程。因此仅仅定义了一个实体类。按公司标准开发来说,应该是和前台交互一个command类(事实上也还是实体类,叫法不一样而已),和数据库交互另一个实体类),在这里定义了一个申请单的基本信息:
- package model;
- public class applyModel {
- /**
- * 流程定义id
- */
- private String proDefId;
- /**
- * 流程定义的key
- */
- private String key;
- private String name;
- /**
- * 申请人
- */
- private String appPerson;
- /**
- * 原因
- */
- private String cause;
- /**
- * 内容
- */
- private String content;
- /**
- * 处理人。即下一个任务节点的受理人
- */
- private String proPerson;
- public String getKey() {
- return key;
- }
- public void setKey(String key) {
- this.key = key;
- }
- public String getAppPerson() {
- return appPerson;
- }
- public void setAppPerson(String appPerson) {
- this.appPerson = appPerson;
- }
- public String getCause() {
- return cause;
- }
- public void setCause(String cause) {
- this.cause = cause;
- }
- public String getContent() {
- return content;
- }
- public void setContent(String content) {
- this.content = content;
- }
- public String getProPerson() {
- return proPerson;
- }
- public void setProPerson(String proPerson) {
- this.proPerson = proPerson;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getProDefId() {
- return proDefId;
- }
- public void setProDefId(String proDefId) {
- this.proDefId = proDefId;
- }
- @Override
- public String toString() {
- return "applyModel [proDefId=" + proDefId + ", key=" + key + ", name="
- + name + ", appPerson=" + appPerson + ", cause=" + cause
- + ", content=" + content + ", proPerson=" + proPerson + "]";
- }
- }
(2)业务逻辑:
A,这种方法获取流程部署时xml文件中的各个节点相关信息。用来辨别当前是哪个节点,下一节点又是什么,共下边的B方法调用。
由于操作部署时的文件,因此使用repositoryService:
- /**
- * @throws XMLStreamException
- * 查询流程节点
- *
- * @author:tuzongxun
- * @Title: findFlow
- * @param @return
- * @return Iterator<FlowElement>
- * @date Mar 21, 2016 9:31:42 AM
- * @throws
- */
- public Iterator<FlowElement> findFlow(String processDefId)
- throws XMLStreamException {
- List<ProcessDefinition> lists = repositoryService
- .createProcessDefinitionQuery()
- .processDefinitionId(processDefId)
- .orderByProcessDefinitionVersion().desc().list();
- ProcessDefinition processDefinition = lists.get(0);
- processDefinition.getCategory();
- String resourceName = processDefinition.getResourceName();
- InputStream inputStream = repositoryService.getResourceAsStream(
- processDefinition.getDeploymentId(), resourceName);
- BpmnXMLConverter converter = new BpmnXMLConverter();
- XMLInputFactory factory = XMLInputFactory.newInstance();
- XMLStreamReader reader = factory.createXMLStreamReader(inputStream);
- BpmnModel bpmnModel = converter.convertToBpmnModel(reader);
- Process process = bpmnModel.getMainProcess();
- Collection<FlowElement> elements = process.getFlowElements();
- Iterator<FlowElement> iterator = elements.iterator();
- return iterator;
- }
B.这里调用上一个方法,一起完毕流程的启动及相关信息的设置:
- /**
- * @throws XMLStreamException
- * 启动流程
- *
- * @author:tuzongxun
- * @Title: startProcess
- * @param @return
- * @return Object
- * @date Mar 17, 2016 2:06:34 PM
- * @throws
- */
- @RequestMapping(value = "/startProcess.do", method = RequestMethod.POST, produces = "application/json;charset=utf-8")
- @ResponseBody
- public Object startProcess(@RequestBody applyModel applyModel,
- HttpServletRequest req) throws XMLStreamException {
- Map<String, String> map = new HashMap<String, String>();
- boolean isLogin = this.isLogin(req);
- if (isLogin) {
- if (applyModel != null) {
- String processKey = applyModel.getKey();
- String processDefId = applyModel.getProDefId();
- // //////////////////////////
- Iterator<FlowElement> iterator = this.findFlow(processDefId);
- Map<String, Object> varables = new HashMap<String, Object>();
- int i = 1;
- while (iterator.hasNext()) {
- FlowElement flowElement = iterator.next();
- // 申请人
- if (flowElement.getClass().getSimpleName()
- .equals("UserTask")
- && i == 1) {
- UserTask userTask = (UserTask) flowElement;
- String assignee = userTask.getAssignee();
- int index1 = assignee.indexOf("{");
- int index2 = assignee.indexOf("}");
- varables.put(assignee.substring(index1 + 1, index2),
- applyModel.getAppPerson());
- varables.put("cause", applyModel.getCause());
- varables.put("content", applyModel.getContent());
- varables.put("taskType", applyModel.getName());
- i++;
- // 下一个处理人
- } else if (flowElement.getClass().getSimpleName()
- .equals("UserTask")
- && i == 2) {
- UserTask userTask = (UserTask) flowElement;
- String assignee = userTask.getAssignee();
- int index1 = assignee.indexOf("{");
- int index2 = assignee.indexOf("}");
- varables.put(assignee.substring(index1 + 1, index2),
- applyModel.getProPerson());
- break;
- }
- }
- // ///////////////////////////
- runtimeService.startProcessInstanceByKey(processKey, varables);
- map.put("userName",
- (String) req.getSession().getAttribute("userName"));
- map.put("isLogin", "yes");
- map.put("result", "success");
- } else {
- map.put("result", "fail");
- }
- } else {
- map.put("isLogin", "no");
- }
- return map;
- }
3.angular js前台代码。:
(1)app.js中配置路由:
- $stateProvider
- .state('startProcess', {
- url: "/startProcess",
- views: {
- 'view': {
- templateUrl: 'activi_views/startProcess.html',
- controller: 'startProcessCtr'
- }
- }
- });
(2)逻辑相关代码:
- angular.module('activitiApp')
- .controller('startProcessCtr', ['$rootScope','$scope','$http','$location', function($rootScope,$scope,$http,$location){
- $http.post("createFlush.do").success(function(result){
- if(result.isLogin==="yes"){
- $rootScope.userName=result.userName;
- $scope.process1={"proDefId":"","key":"","appPerson":"","cause":"","content":"","proPerson":"","name":""};
- if($rootScope.process==null||$rootScope.process.key==null){
- $location.path("/processList");
- }else{
- $scope.process1.proDefId=$rootScope.process.id;
- $scope.process1.key=$rootScope.process.key;
- $scope.process1.name=$rootScope.process.name;
- }
- }else{
- $location.path("/login");
- }
- });
- $scope.startProcess=function(process){
- console.log(process);
- $http.post("./startProcess.do",process).success(function(deployResult){
- $location.path("/taskList");
- });
- }
- }])
4.相应的填写相关信息的页面:
- <center>
- <div style="margin-top:20px;margin-left:200px;background-color:#9cc;height:500px;width:50%;font-size:22px;position:relative;float:left;">
- <p style="font-size:28px">新建申请</p>
- 流程定义id:<input type="text" ng-model="process1.proDefId" readonly="readonly" style="background-color:#9dc"/>
- </br>
- </br>
- 流程定义key:<input type="text" ng-model="process1.key" readonly="readonly" style="background-color:#9dc"/>
- </br>
- </br>
- 申请类型:<input type="text" ng-model="process1.name" readonly="readonly" style="background-color:#9dc"/>
- </br>
- </br>
- 申请人:<input type="text" ng-model="process1.appPerson" />
- </br>
- </br>
- 申请原因:<input type="text" ng-model="process1.cause"/>
- </br>
- </br>
- 申请内容:<input type="text" ng-model="process1.content"/>
- </br>
- </br>
- 受理人:<input type="text" ng-model="process1.proPerson"/>
- </br>
- </br>
- <input style="font-size:24px;cursor:pointer" type="button" value="提交申请" ng-click="startProcess(process1);">
- <input style="font-size:24px;cursor:pointer" type="button" value="返回">
- </div>
- </center>
5.成功启动一个流程实例后,会看到act_ru_execution、act_ru_identitylink、act_ru_task、act_ru_variable以及act_hi_actinst、act_hi_detail、act_hi_indentitylink、act_hi_procinst、act_hi_taskinst、act_hi_varinst表中都有了数据。除开variable和varinst中的数据条数是依据相应的流程变量多少来定的。其它都是添加了一条数据。
activiti自己定义流程之Spring整合activiti-modeler实例(六):启动流程的更多相关文章
- activiti自己定义流程之Spring整合activiti-modeler5.16实例(四):部署流程定义
注:(1)环境搭建:activiti自己定义流程之Spring整合activiti-modeler5.16实例(一):环境搭建 (2)创建流程模型:activiti自己定义流程之Spr ...
- activiti自己定义流程之Spring整合activiti-modeler实例(一):环境搭建
项目中须要整合activiti-modeler自己定义流程,找了非常多资料后,最终成功的跳转到activiti-modeler流程设计界面.下面是记录: 一.整合基础:eclipse4.4.1.tom ...
- activiti自己定义流程之Spring整合activiti-modeler实例(七):任务列表展示
1.通过上一节的操作,能够知道流程启动以后会同一时候生成一个流程实例和用户任务.这个用户任务保存在act_ru_task和act_hi_task表中,从表明能够看出ru是runtime,hi是hist ...
- activiti自定义流程之Spring整合activiti-modeler5.16实例(五):流程定义列表
注:(1)环境搭建:activiti自定义流程之Spring整合activiti-modeler5.16实例(一):环境搭建 (2)创建流程模型:activiti自定义流程之Spring ...
- activiti自定义流程之Spring整合activiti-modeler5.16实例(四):部署流程定义
注:(1)环境搭建:activiti自定义流程之Spring整合activiti-modeler5.16实例(一):环境搭建 (2)创建流程模型:activiti自定义流程之Spring ...
- activiti自定义流程之Spring整合activiti-modeler5.16实例(九):历史任务查询
注:(1)环境搭建:activiti自定义流程之Spring整合activiti-modeler5.16实例(一):环境搭建 (2)创建流程模型:activiti自定义流程之Spring ...
- activiti自定义流程之Spring整合activiti-modeler5.16实例(八):完成个人任务
注:(1)环境搭建:activiti自定义流程之Spring整合activiti-modeler5.16实例(一):环境搭建 (2)创建流程模型:activiti自定义流程之Spring ...
- activiti自定义流程之Spring整合activiti-modeler5.16实例(七):任务列表展示
注:(1)环境搭建:activiti自定义流程之Spring整合activiti-modeler5.16实例(一):环境搭建 (2)创建流程模型:activiti自定义流程之Spring ...
- activiti自定义流程之Spring整合activiti-modeler5.16实例(六):启动流程
注:(1)环境搭建:activiti自定义流程之Spring整合activiti-modeler5.16实例(一):环境搭建 (2)创建流程模型:activiti自定义流程之Spring ...
随机推荐
- [MySQL] lock知识梳理
MySQL Lock机制 INDEX: MySQL事务隔离级别 MVCC MySQL Lock类型 MySQL MDL CONTENT: 1. MySQL事务隔离级别 Read Uncommit RU ...
- unittest框架及自动化测试
之前在公司做过自动化测试的知识分享,现在把它记录下来. •一.如何更好的编写测试用例 •1.模块化:将一些基础的.共有的步骤代码独立为单独的模块,使用时再调用.好处:可以使代码复用,减少代码编写, ...
- POJ 1239 Increasing Sequences [DP]
题意:略. 思路:进行两次dp. 第一次dp从前向后,用dp[x]表示从第x位向前dp[x]位可构成一个数字,且与前面的数组符合题意要求.最后求的dp[n]即为最后一个数字的长度. 而题目还有要求,所 ...
- NOI模拟题4 Problem B: 小狐狸(fox)
Solution 考虑分开统计朝向每一个方向的所有狐狸对答案的贡献. 比如说以向右为例, 我们用箭标表示每一只狐狸的方向, 用\('\)表示当前一步移动之前的每一只狐狸的位置. \[ \begin{a ...
- my-> git使用笔记
要在本地新建分支test0227并切换到该分支,运行git checkoutout 并加上-b参数,如: git checkout -b test0227 这相当于执行下面这两条命令: git bra ...
- 多字节与UTF-8、Unicode之间的转换
from http://blog.csdn.net/frankiewang008/article/details/12832239 // 多字节编码转为UTF8编码 bool MBToUTF8(vec ...
- Delphi Integer 转成单字节
整形不能超过256 b:=Byte(StrToInt(n)); var s: string; b: Byte; begin s := Edit1.Text; b := Byte(Str ...
- devicemapper: Error running deviceCreate (ActivateDevice) dm_task_run failed
在一台新机子上面,docker处理完lvs数据卷之后,启动docker服务时,出现了启动失败,失败信息如下: [root@hxin221 ~]# systemctl status docker ● d ...
- Assembly.CreateInstance和Activator.CreateInstance
本来是在设计模式中的工厂方法,在实现抽象工厂时,用到了一直都不熟悉的反射. namespace Factory { public abstract class Factory { public abs ...
- yii2操作数据库 mysql 读写分离 主从复制
转载地址:http://www.kuitao8.com/20150115/3471.shtml 开始使用数据库首先需要配置数据库连接组件,通过添加 db 组件到应用配置实现("基础的&quo ...
