activiti官方文档摘要The Process Engine API and servicesThe engine API is the most common way of int
activiti 官方文档摘要
The Process Engine API and services
The engine API is the most common way of interacting with Activiti. The central starting point is the
?
?
?
ProcessEngine processEngine =ProcessEngines.getDefaultProcessEngine();??RuntimeService runtimeService = processEngine.getRuntimeService();?RepositoryService repositoryService = processEngine.getRepositoryService();?TaskService taskService = processEngine.getTaskService();?ManagementService managementService = processEngine.getManagementService();?IdentityService identityService = processEngine.getIdentityService();?HistoryService historyService = processEngine.getHistoryService();?FormService formService = processEngine.getFormService();
