update(REQ-2516) - 移除 Server 模块下引入的 Starter 包
This commit is contained in:
parent
ec52b1ac68
commit
124b73888c
@ -21,10 +21,10 @@
|
||||
<redisson.version>3.25.0</redisson.version>
|
||||
</properties>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<!--<dependency>
|
||||
<groupId>cn.axzo.workflow</groupId>
|
||||
<artifactId>workflow-engine-spring-boot-starter</artifactId>
|
||||
</dependency>
|
||||
</dependency>-->
|
||||
<dependency>
|
||||
<groupId>cn.axzo.framework</groupId>
|
||||
<artifactId>axzo-web-spring-boot-starter</artifactId>
|
||||
|
||||
@ -13,8 +13,6 @@ import cn.axzo.workflow.common.model.response.bpmn.process.ProcessNodeDetailVO;
|
||||
import cn.axzo.workflow.core.service.BpmnProcessInstanceService;
|
||||
import cn.axzo.workflow.core.service.support.FlowNodeForecastService;
|
||||
import cn.axzo.workflow.server.common.annotation.RepeatSubmit;
|
||||
import cn.axzo.workflow.starter.api.WorkflowCoreService;
|
||||
import cn.axzo.workflow.starter.api.WorkflowManageService;
|
||||
import cn.azxo.framework.common.model.CommonResponse;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.flowable.bpmn.model.FlowElement;
|
||||
@ -68,10 +66,10 @@ public class TestController {
|
||||
private ProcessInstanceApi processInstanceApi;
|
||||
@Autowired
|
||||
private BpmnProcessInstanceService bpmnProcessInstanceService;
|
||||
@Autowired
|
||||
private WorkflowCoreService workflowCoreService;
|
||||
@Autowired
|
||||
private WorkflowManageService workflowManageService;
|
||||
// @Autowired
|
||||
// private WorkflowCoreService workflowCoreService;
|
||||
// @Autowired
|
||||
// private WorkflowManageService workflowManageService;
|
||||
|
||||
@RepeatSubmit
|
||||
@GetMapping("/test")
|
||||
@ -138,7 +136,7 @@ public class TestController {
|
||||
return CommonResponse.success(true);
|
||||
}
|
||||
|
||||
@GetMapping("/create")
|
||||
/*@GetMapping("/create")
|
||||
public CommonResponse<String> test5(@RequestParam(required = false) Boolean sync) {
|
||||
BpmnProcessInstanceCreateDTO dto = new BpmnProcessInstanceCreateDTO();
|
||||
dto.setProcessDefinitionKey("1");
|
||||
@ -250,5 +248,5 @@ public class TestController {
|
||||
public CommonResponse<List<String>> test11() {
|
||||
List<String> tenantIds = workflowManageService.sync().getTenantIds();
|
||||
return CommonResponse.success(tenantIds);
|
||||
}
|
||||
}*/
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user