zoukankan      html  css  js  c++  java
  • 工作流简单参考

    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

  • 相关阅读:
    负载均衡
    二叉树反转
    hashMap 和红黑树
    linux c++ 服务器编程,收藏一个测试例子
    某某音乐盒面试
    Linux中的文件i节点
    linux 文件格式压缩
    类string的构造函数、拷贝构造函数和析构函数
    计算二叉树的深度
    string转换为decimal
  • 原文地址:https://www.cnblogs.com/beijingstruggle/p/6187941.html
Copyright © 2011-2022 走看看