Browse Source

Handle ClassCastException

pull/439/head
Ryan Baxter 6 years ago
parent
commit
831008f42d
  1. 8
      spring-cloud-gateway-core/src/main/java/org/springframework/cloud/gateway/handler/predicate/ReadBodyPredicateFactory.java

8
spring-cloud-gateway-core/src/main/java/org/springframework/cloud/gateway/handler/predicate/ReadBodyPredicateFactory.java

@ -60,8 +60,12 @@ public class ReadBodyPredicateFactory @@ -60,8 +60,12 @@ public class ReadBodyPredicateFactory
Object cachedBody = exchange.getAttribute(CACHE_REQUEST_BODY_OBJECT_KEY);
Mono<?> modifiedBody;
if(cachedBody != null) {
boolean test = config.predicate.test(cachedBody);
exchange.getAttributes().put(TEST_ATTRIBUTE, test);
try {
boolean test = config.predicate.test(cachedBody);
exchange.getAttributes().put(TEST_ATTRIBUTE, test);
} catch(ClassCastException e) {
//predicate test failed because class in predicate does not match the cached body object
}
modifiedBody = Mono.just(cachedBody);
} else {
ServerRequest serverRequest = new DefaultServerRequest(exchange);

Loading…
Cancel
Save