标签:simple wan repo while get star code eth operation
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();
DynamicBpmnService dynamicBpmnService = processEngine.getDynamicBpmnService();
The RepositoryService is probably the first service needed when working with the Activiti engine.
This service offers operations for managing and manipulating deployments and process definitions
It deals with starting new process instances of process definitions
The IdentityService is pretty simple. It allows the management (creation, update, deletion, querying, …?) of groups and users
The FormService is an optional service. Meaning that Activiti can perfectly be used without it, without sacrificing any functionality
A start form is a form that is shown to the user before the process instance is started, while a task form is the form that is displayed when a user wants to complete a form
标签:simple wan repo while get star code eth operation
原文地址:https://www.cnblogs.com/mengjianzhou/p/11571387.html