网关用来控制流程的流向 网关可以 消费 也可以 生成 token。 网关显示成菱形图形,内部有有一个小图标。 图标表示网关的类型。 基本分支 首先 利用 流程变量 写个带有分支的一个基本流程
流程图:
部署流程文件: //获取流程引擎
ProcessEngine processEngine = ProcessEngines.getDefaultProcessEngine();
@Test
public void deployFlow(){
//获取仓库服务对象
RepositoryService repositoryService = processEngine.getRepositoryService();
InputStream in = this.getClass().getResourceAsStream("/MyProcess11.zip");
ZipInputStream zipInputStream = new ZipInputStream(in);
Deployment dm = repositoryService.createDeployment()
.name("学生请假")
.addZipInputStream(zipInputStream)
.deploy();
System.out.println("id:"+dm.getId()+",name:"+dm.getName());
}
|