上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 26 下一页

arch_wf 流程调用顺序

摘要: WorkflowServiceUtil.drivenProcess(info); //驱动流程(提交、退回、撤销、取回、转发等) WorkflowService service = new WorkflowServiceImpl(); //封装远程代理对象 String invocationHand 阅读全文
posted @ 2017-06-14 17:50 rigidwang 阅读(178) 评论(0) 推荐(0)

maven 构件部署至远程仓库

摘要: http://blog.csdn.net/tounaobun/article/details/8959682 阅读全文
posted @ 2017-06-06 14:19 rigidwang 阅读(117) 评论(0) 推荐(0)

maven install 错误

摘要: 解决如下: pom.xml 增加: <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> <version>3.0.5</version> </dependency> <de 阅读全文
posted @ 2017-06-06 13:36 rigidwang 阅读(179) 评论(0) 推荐(0)

Centos7--traceroute

摘要: 通过traceroute我们可以知道信息从你的计算机到互联网另一端的主机是走的什么路径。当然每次数据包由某一同样的出发点(source)到达某一同样的目的地(destination)走的路径可能会不一样,但基本上来说大部分时候所走的路由是相同的。linux系统中,我们称之为traceroute,在M 阅读全文
posted @ 2017-05-25 17:04 rigidwang 阅读(10233) 评论(0) 推荐(0)

Centos7 firewalld

摘要: 1.基本用法启动: systemctl start firewalld查看状态: systemctl status firewalld 停止: systemctl disable firewalld禁用: systemctl stop firewalld 2.systemctl是CentOS7的服务 阅读全文
posted @ 2017-05-25 16:49 rigidwang 阅读(143) 评论(0) 推荐(0)

cxf client timeout

摘要: --> classpath:/system-ext.properties ... 阅读全文
posted @ 2017-05-17 17:13 rigidwang 阅读(336) 评论(0) 推荐(0)

5.activiti--完成任务

摘要: taskService.complete(task.getId());此操作的触发会将任务数据从运行时数据中移除,execution 会移动到下一个任务 阅读全文
posted @ 2017-05-03 15:23 rigidwang 阅读(311) 评论(0) 推荐(0)

4.activiti--代理任务Claiming the task

摘要: taskService.claim(task.getId(), "fozzie");//指定该任务的分配给fozzie,该任务在其他人待办列表中消失 List<Task> tasks = taskService.createTaskQuery().taskAssignee("fozzie").lis 阅读全文
posted @ 2017-05-03 15:22 rigidwang 阅读(246) 评论(0) 推荐(0)

3.activiti--待办任务

摘要: List<Task> tasks = taskService.createTaskQuery().taskCandidateUser("kermit").list(); 阅读全文
posted @ 2017-05-03 15:07 rigidwang 阅读(705) 评论(0) 推荐(0)

2.activiti-启动流程实例

摘要: public static void main(String[] args) { // Create Activiti process engine ProcessEngine processEngine = ProcessEngineConfiguration .createStandaloneProcessEngineConfiguration() .buildPr... 阅读全文
posted @ 2017-05-03 15:03 rigidwang 阅读(180) 评论(0) 推荐(0)
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 26 下一页