update - REQ-2324-解决启动报错问题

This commit is contained in:
yangqicheng 2024-05-23 10:32:17 +08:00
parent 5d7733bbb0
commit af18960099

View File

@ -16,6 +16,7 @@ import org.flowable.engine.runtime.ProcessInstance;
import org.flowable.job.service.JobService;
import org.flowable.job.service.impl.persistence.entity.JobEntity;
import org.flowable.spring.SpringProcessEngineConfiguration;
import org.springframework.context.annotation.Lazy;
import org.springframework.stereotype.Service;
import org.springframework.util.CollectionUtils;
@ -31,12 +32,12 @@ import static cn.axzo.workflow.core.common.code.BpmnTaskRespCode.PROCESS_INSTANC
public class BpmnProcessActivityServiceImpl implements BpmnProcessActivityService {
@Resource
// @Lazy
@Lazy
private RuntimeService runtimeService;
@Resource
private ExtAxHiTaskInstService extAxHiTaskInstService;
@Resource
// @Lazy
@Lazy
private SpringProcessEngineConfiguration processEngineConfiguration;
private static final String JOB_TRIGGER_ASYNC_NAME = "asyncTrigger";