|
|
|
|
@ -5,10 +5,31 @@ import cn.iocoder.yudao.framework.flowable.core.web.FlowableWebFilter;
|
|
|
|
|
import org.springframework.boot.web.servlet.FilterRegistrationBean;
|
|
|
|
|
import org.springframework.context.annotation.Bean;
|
|
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
|
import org.springframework.core.task.AsyncListenableTaskExecutor;
|
|
|
|
|
import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;
|
|
|
|
|
|
|
|
|
|
@Configuration
|
|
|
|
|
public class YudaoFlowableConfiguration {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 参考 {@link org.flowable.spring.boot.FlowableJobConfiguration} 类,创建对应的 AsyncListenableTaskExecutor Bean
|
|
|
|
|
*
|
|
|
|
|
* 如果不创建,会导致项目启动时,Flowable 报错的问题
|
|
|
|
|
*/
|
|
|
|
|
@Bean
|
|
|
|
|
public AsyncListenableTaskExecutor taskExecutor() {
|
|
|
|
|
ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
|
|
|
|
|
executor.setCorePoolSize(8);
|
|
|
|
|
executor.setMaxPoolSize(8);
|
|
|
|
|
executor.setQueueCapacity(100);
|
|
|
|
|
executor.setThreadNamePrefix("flowable-task-Executor-");
|
|
|
|
|
executor.setAwaitTerminationSeconds(30);
|
|
|
|
|
executor.setWaitForTasksToCompleteOnShutdown(true);
|
|
|
|
|
executor.setAllowCoreThreadTimeOut(true);
|
|
|
|
|
executor.initialize();
|
|
|
|
|
return executor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 配置 flowable Web 过滤器
|
|
|
|
|
*/
|
|
|
|
|
|