package com.iailab.module.bpm.framework.flowable.core.listener.demo.exection;
|
|
import lombok.extern.slf4j.Slf4j;
|
import org.flowable.engine.delegate.DelegateExecution;
|
import org.springframework.stereotype.Component;
|
|
/**
|
* 类型为 expression 的 ExecutionListener 监听器示例
|
*
|
* 和 {@link DemoDelegateClassExecutionListener} 的差异是,需要注册到 Spring 中,但不用实现 {@link org.flowable.engine.delegate.JavaDelegate} 接口
|
*/
|
@Component
|
@Slf4j
|
public class DemoSpringExpressionExecutionListener {
|
|
public void execute(DelegateExecution execution) {
|
log.info("[execute][execution({}) 被调用!变量有:{}]", execution.getId(),
|
execution.getCurrentFlowableListener().getFieldExtensions());
|
}
|
|
}
|