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>
|
<redisson.version>3.25.0</redisson.version>
|
||||||
</properties>
|
</properties>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<!--<dependency>
|
||||||
<groupId>cn.axzo.workflow</groupId>
|
<groupId>cn.axzo.workflow</groupId>
|
||||||
<artifactId>workflow-engine-spring-boot-starter</artifactId>
|
<artifactId>workflow-engine-spring-boot-starter</artifactId>
|
||||||
</dependency>
|
</dependency>-->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>cn.axzo.framework</groupId>
|
<groupId>cn.axzo.framework</groupId>
|
||||||
<artifactId>axzo-web-spring-boot-starter</artifactId>
|
<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.BpmnProcessInstanceService;
|
||||||
import cn.axzo.workflow.core.service.support.FlowNodeForecastService;
|
import cn.axzo.workflow.core.service.support.FlowNodeForecastService;
|
||||||
import cn.axzo.workflow.server.common.annotation.RepeatSubmit;
|
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 cn.azxo.framework.common.model.CommonResponse;
|
||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
import org.flowable.bpmn.model.FlowElement;
|
import org.flowable.bpmn.model.FlowElement;
|
||||||
@ -68,10 +66,10 @@ public class TestController {
|
|||||||
private ProcessInstanceApi processInstanceApi;
|
private ProcessInstanceApi processInstanceApi;
|
||||||
@Autowired
|
@Autowired
|
||||||
private BpmnProcessInstanceService bpmnProcessInstanceService;
|
private BpmnProcessInstanceService bpmnProcessInstanceService;
|
||||||
@Autowired
|
// @Autowired
|
||||||
private WorkflowCoreService workflowCoreService;
|
// private WorkflowCoreService workflowCoreService;
|
||||||
@Autowired
|
// @Autowired
|
||||||
private WorkflowManageService workflowManageService;
|
// private WorkflowManageService workflowManageService;
|
||||||
|
|
||||||
@RepeatSubmit
|
@RepeatSubmit
|
||||||
@GetMapping("/test")
|
@GetMapping("/test")
|
||||||
@ -138,7 +136,7 @@ public class TestController {
|
|||||||
return CommonResponse.success(true);
|
return CommonResponse.success(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
@GetMapping("/create")
|
/*@GetMapping("/create")
|
||||||
public CommonResponse<String> test5(@RequestParam(required = false) Boolean sync) {
|
public CommonResponse<String> test5(@RequestParam(required = false) Boolean sync) {
|
||||||
BpmnProcessInstanceCreateDTO dto = new BpmnProcessInstanceCreateDTO();
|
BpmnProcessInstanceCreateDTO dto = new BpmnProcessInstanceCreateDTO();
|
||||||
dto.setProcessDefinitionKey("1");
|
dto.setProcessDefinitionKey("1");
|
||||||
@ -250,5 +248,5 @@ public class TestController {
|
|||||||
public CommonResponse<List<String>> test11() {
|
public CommonResponse<List<String>> test11() {
|
||||||
List<String> tenantIds = workflowManageService.sync().getTenantIds();
|
List<String> tenantIds = workflowManageService.sync().getTenantIds();
|
||||||
return CommonResponse.success(tenantIds);
|
return CommonResponse.success(tenantIds);
|
||||||
}
|
}*/
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user