工作流简单参考

http://huangyunbin.iteye.com/blog/2172155

http://bbs.csdn.net/topics/391836473

http://blog.csdn.net/qwlzxx/article/details/52351293

http://blog.csdn.net/qwlzxx/article/details/52415895

http://blog.csdn.net/qwlzxx/article/details/52416614

http://blog.csdn.net/samile6899/article/details/52578347

任务节点人设置

http://blog.csdn.net/qq_30739519/article/details/51225067

Activiti设置流程发起用户信息

http://blog.csdn.net/hj7jay/article/details/50848824

//设定流程发起人的id为llllll
processEngine.getIdentityService().setAuthenticatedUserId("lllll");

根据流程实例id能查到发起详细信息

List<HistoricProcessInstance>
hpis = processEngine.getHistoryService().createHistoricProcessInstanceQuery().processInstanceId("4705")

.list();
根据发起人能查到发起详细信息
List
hpis = processEngine.getHistoryService().createHistoricProcessInstanceQuery()

.startedBy("lllll").list();

activiti-explorer部署到本地tomcat下

http://blog.csdn.net/zhang_xinxiu/article/details/38655311

activiti-explorer

activiti-explorer中画图,连线时,从一个节点拖拽线到指定另一个节点,另一个节点会出现绿框,说明拖拽成功,而不是点一下线,然后连接。

排他网关

http://blog.csdn.net/zjx86320/article/details/50381523

查询待办

http://www.360doc.com/content/13/1106/13/203871_327124905.shtml

原文地址:https://www.cnblogs.com/beijingstruggle/p/6187941.html