-
Notifications
You must be signed in to change notification settings - Fork 5.9k
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
Make OAuth's RestTemplate and WebClient customizable #8624
Make OAuth's RestTemplate and WebClient customizable #8624
Conversation
test failing because of different version of nimbus have been released recently (see e09edf6) method i have changed version of nimbus like in this PR #8622 |
ebbf801
to
0ac851f
Compare
Thanks for the PR @bedla. However, a Draft PR has recently been submitted for this #8588. I haven't had time to review it as of yet. Also, I'm seeing 44 modified files in this PR which would make it very difficult and time consuming to review. It's recommended to put forth a Draft PR with minimal changes as a first step so we can get on the same page with proposed changes. I would still be willing to review this PR but the changes need to be reduced significantly so we can proceed with initial draft review. |
sure, i see. i will cut it into pieces and create chained PRs. |
Please create ONLY one Draft PR. I would recommend that the PR demonstrate how a user would provide a customized |
@jgrandja Hi, I am unable to find IntelliJ Code format, is there any? (my default intellij formatter keeps changing to many unrelated lines) |
FYI, I have created PR #8690 for changes related to |
Hi,
I have created PR which makes
RestTemplate
andWebClient
used through OAuth2 module customizable (currently there are private instances created). It kind of solves #7027 .Basically I found all spots where http-clients were created and made that API customizable. Please review the path I have chosen, if it is ok. I am open for any modification.
Next steps (WIP) on my side are javadoc and tests.
Thx,
Ivos