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

Change RestTemplateBuilder redirections at HttpComponentsClientHttpRequestFactory to FOLLOW_WHEN_POSSIBLE #43778

Conversation

panic08
Copy link
Contributor

@panic08 panic08 commented Jan 11, 2025

Our main problem is that RestTemplate has a default redirect status of FOLLOW_WHEN_POSSIBLE. When we build RestTemplateBuilder and want to use Apache HttpComponents as a basis, for some reason we check httpClientOptions for HttpClientOption.ENABLE_REDIRECTS, otherwise we set it to false, which is wrong.

The solution to this problem I saw was to set builder.redirects(Redirects.FOLLOW_WHEN_POSSIBLE); the default if (httpClientOptions != null).

Closes: #43431

@spring-projects-issues spring-projects-issues added the status: waiting-for-triage An issue we've not yet triaged label Jan 11, 2025
@panic08 panic08 force-pushed the test-rest-template-redirect-defaults branch from c7f809c to a1c56a5 Compare January 11, 2025 16:11
…questFactory to FOLLOW_WHEN_POSSIBLE

Signed-off-by: Andrey Litvitski <[email protected]>
@panic08 panic08 force-pushed the test-rest-template-redirect-defaults branch from a1c56a5 to 191cd0b Compare January 11, 2025 16:14
@snicoll
Copy link
Member

snicoll commented Jan 11, 2025

@Panic thanks for the PR but it contains unrelated changes. Looking at the actual change, fixing #43431 is going to require more work (testing, and reviewing the consistency).

@snicoll snicoll closed this Jan 11, 2025
@snicoll snicoll added status: declined A suggestion or change that we don't feel we should currently apply and removed status: waiting-for-triage An issue we've not yet triaged labels Jan 11, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
status: declined A suggestion or change that we don't feel we should currently apply
Projects
None yet
Development

Successfully merging this pull request may close these issues.

TestRestTemplate should have same default redirect settings as RestTemplate
3 participants