dangsn
2023-07-30 8b6a2a8255d9da50b90a086222583ba1b4a77c99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.vci.ubcs.flow.engine.envent;
 
import lombok.extern.slf4j.Slf4j;
import org.flowable.engine.delegate.DelegateExecution;
import org.flowable.engine.delegate.ExecutionListener;
import org.springframework.stereotype.Component;
 
import java.util.Map;
 
@Slf4j
@Component
public class FlowExecutionEndListener implements ExecutionListener {
 
    @Override
    public void notify(DelegateExecution execution) {
        Map var = execution.getVariableInstances();
        log.info("执行流程FlowExecutionEndListener",var);
    }
}