We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
java version: 11 spring cloud version opentracing-spring-web-starter:4.1.0 spring-cloud-dependencies:Greenwich.SR2 here is sample code snippet:
here is the example: .route(r -> r .path("/*/path1", "/*/path2", "/project/*/path2") .and().method(HttpMethod.GET) .filters(f -> f.modifyResponseBody(path2WebJson.class, path1WebJson.class, (exchange, path2WebJson) -> { path1WebJson path1WebJson = new path1WebJson(path2WebJson.getpath2()); return Mono.just(path1WebJson); })) .uri(Url)) .route(r -> r .path("/*/path1", "/*/path1/*", "/project/*/path2", "/project/*/path2/*") .uri(Url)) .build();
The text was updated successfully, but these errors were encountered:
No branches or pull requests
java version: 11
spring cloud version
opentracing-spring-web-starter:4.1.0
spring-cloud-dependencies:Greenwich.SR2
here is sample code snippet:
The text was updated successfully, but these errors were encountered: