Merge branch '2.2.x'

This commit is contained in:
Spencer Gibb
2020-04-08 21:45:04 -04:00
2 changed files with 3 additions and 1 deletions

View File

@@ -24,6 +24,7 @@ import reactor.core.publisher.Mono;
import org.springframework.cloud.gateway.filter.GatewayFilter;
import org.springframework.cloud.gateway.filter.GatewayFilterChain;
import org.springframework.http.server.reactive.ServerHttpRequest;
import org.springframework.util.Assert;
import org.springframework.web.server.ServerWebExchange;
import static org.springframework.cloud.gateway.support.GatewayToStringStyler.filterToStringCreator;
@@ -93,6 +94,7 @@ public class RewritePathGatewayFilterFactory
}
public Config setRegexp(String regexp) {
Assert.hasText(regexp, "regexp must have a value");
this.regexp = regexp;
return this;
}
@@ -102,6 +104,7 @@ public class RewritePathGatewayFilterFactory
}
public Config setReplacement(String replacement) {
Assert.notNull(replacement, "replacement must not be null");
this.replacement = replacement;
return this;
}

View File

@@ -187,7 +187,6 @@ public class RouteDefinitionRouteLocator implements RouteLocator {
new ArrayList<>(routeDefinition.getFilters())));
}
Flux.just().onErrorContinue()
AnnotationAwareOrderComparator.sort(filters);
return filters;
}