springboot中flowable6.8.0自定义监听如何设置监听器的优先级
时间: 2023-10-03 12:06:56 浏览: 134
在 Spring Boot 中使用 Flowable 6.8.0 自定义监听器时,可以通过实现 `org.flowable.common.engine.api.delegate.event.FlowableEventListener` 接口,并使用 `@Component` 注解将其注册为 Spring Bean,然后在 `ProcessEngineConfiguration` 中设置监听器的优先级。
具体来说,以下是设置监听器优先级的步骤:
1. 创建自定义的监听器类,实现 `org.flowable.common.engine.api.delegate.event.FlowableEventListener` 接口,并使用 `@Component` 注解将其注册为 Spring Bean,例如:
```java
@Component
public class CustomEventListener implements FlowableEventListener {
@Override
public void onEvent(FlowableEvent event) {
// 处理事件
}
@Override
public boolean isFailOnException() {
return false;
}
}
```
2. 在 `ProcessEngineConfiguration` 中设置监听器的优先级,可以使用 `setEventListeners` 方法,例如:
```java
@Bean
public ProcessEngineConfiguration processEngineConfiguration(DataSource dataSource, PlatformTransactionManager transactionManager) {
SpringProcessEngineConfiguration config = new SpringProcessEngineConfiguration();
// 其他配置...
config.setDataSource(dataSource);
config.setTransactionManager(transactionManager);
// 设置监听器的优先级
Map<String, List<FlowableEventListener>> eventListeners = new HashMap<>();
List<FlowableEventListener> listeners = new ArrayList<>();
listeners.add(customEventListener());
eventListeners.put("TASK_CREATED", listeners);
config.setEventListeners(eventListeners);
return config;
}
```
在上述代码中,通过 `customEventListener()` 方法获取自定义的监听器,然后将其添加到 `TASK_CREATED` 事件的监听器列表中。`TASK_CREATED` 是一个 Flowable 事件类型,表示任务创建事件。Flowable 还提供了其他的事件类型,可以根据需要设置相应的监听器优先级。
注意,如果需要设置多个事件类型的监听器优先级,可以在 `eventListeners` 中添加多个键值对。
另外,如果需要设置多个监听器的优先级,可以将它们添加到同一个事件类型的监听器列表中,Flowable 会按照添加的顺序依次触发这些监听器。如果需要改变监听器的顺序,只需要改变它们在列表中的位置即可。
阅读全文