fix: adjust filter order

This commit is contained in:
hongqiaowei
2021-01-18 15:57:49 +08:00
parent cefb42ed13
commit 980254b70b
2 changed files with 2 additions and 2 deletions

View File

@@ -97,7 +97,7 @@ public class FilterExceptionHandlerConfig {
}
@Bean
@Order(-2)
@Order(-10)
public FilterExceptionHandler filterExceptionHandler() {
return new FilterExceptionHandler();
}

View File

@@ -51,7 +51,7 @@ import we.util.WebUtils;
*/
@Component(FlowControlFilter.FLOW_CONTROL_FILTER)
@Order(-3)
@Order(-1)
public class FlowControlFilter extends ProxyAggrFilter {
public static final String FLOW_CONTROL_FILTER = "flowControlFilter";