|
|
@@ -13,7 +13,7 @@ import org.springframework.context.annotation.Configuration;
|
|
|
*
|
|
|
* @author 芋道源码
|
|
|
*/
|
|
|
-//@Configuration(proxyBeanMethods = false)
|
|
|
+@Configuration(proxyBeanMethods = false)
|
|
|
public class BpmWebConfiguration {
|
|
|
|
|
|
/**
|
|
|
@@ -24,15 +24,15 @@ public class BpmWebConfiguration {
|
|
|
return YudaoSwaggerAutoConfiguration.buildGroupedOpenApi("bpm");
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * 配置 Flowable Web 过滤器
|
|
|
- */
|
|
|
- @Bean
|
|
|
- public FilterRegistrationBean<FlowableWebFilter> flowableWebFilter() {
|
|
|
- FilterRegistrationBean<FlowableWebFilter> registrationBean = new FilterRegistrationBean<>();
|
|
|
- registrationBean.setFilter(new FlowableWebFilter());
|
|
|
- registrationBean.setOrder(WebFilterOrderEnum.FLOWABLE_FILTER);
|
|
|
- return registrationBean;
|
|
|
- }
|
|
|
+ // /**
|
|
|
+ // * 配置 Flowable Web 过滤器
|
|
|
+ // */
|
|
|
+ // @Bean
|
|
|
+ // public FilterRegistrationBean<FlowableWebFilter> flowableWebFilter() {
|
|
|
+ // FilterRegistrationBean<FlowableWebFilter> registrationBean = new FilterRegistrationBean<>();
|
|
|
+ // registrationBean.setFilter(new FlowableWebFilter());
|
|
|
+ // registrationBean.setOrder(WebFilterOrderEnum.FLOWABLE_FILTER);
|
|
|
+ // return registrationBean;
|
|
|
+ // }
|
|
|
|
|
|
}
|