Skip to content
New issue

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

problem with URL encoding #3395

Open
tompson opened this issue May 16, 2024 · 0 comments
Open

problem with URL encoding #3395

tompson opened this issue May 16, 2024 · 0 comments

Comments

@tompson
Copy link

tompson commented May 16, 2024

trying to run a request with

/demo/get?timeZone=%2B02%3A00

causes proxied service to fail with because parameter is received as ' 02:00' instead of '+02:00'

my simple gateway config:

 @Bean
    public RouterFunction<ServerResponse> demoRoute() {
        return route("demo")
                .route(path("/demo/**"), http("http://localhost:8080/demo/"))
                .before(preserveHostHeader())
                .build();
    }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant