-
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
Provide a R2dbc implementation of ReactiveOuath2AuthorizedClientService #8765
Conversation
@ovidiupopa91 Thanks for the PR ! Overall this looks good. Spring Framework 5.3.0 GA is planned for Oct 27 so I'll review this a couple weeks beforehand and we'll merge shortly after Oct 27. Just wanted to give you an update. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the PR @ovidiupopa91. Please see comments inline.
Also, please rebase on master.
Then run the build and you'll notice code formatting errors, which you can auto-correct by following the console prompt.
...a/org/springframework/security/oauth2/client/R2dbcReactiveOAuth2AuthorizedClientService.java
Outdated
Show resolved
Hide resolved
...a/org/springframework/security/oauth2/client/R2dbcReactiveOAuth2AuthorizedClientService.java
Outdated
Show resolved
Hide resolved
...a/org/springframework/security/oauth2/client/R2dbcReactiveOAuth2AuthorizedClientService.java
Outdated
Show resolved
Hide resolved
...a/org/springframework/security/oauth2/client/R2dbcReactiveOAuth2AuthorizedClientService.java
Outdated
Show resolved
Hide resolved
...a/org/springframework/security/oauth2/client/R2dbcReactiveOAuth2AuthorizedClientService.java
Outdated
Show resolved
Hide resolved
...a/org/springframework/security/oauth2/client/R2dbcReactiveOAuth2AuthorizedClientService.java
Outdated
Show resolved
Hide resolved
...a/org/springframework/security/oauth2/client/R2dbcReactiveOAuth2AuthorizedClientService.java
Outdated
Show resolved
Hide resolved
...a/org/springframework/security/oauth2/client/R2dbcReactiveOAuth2AuthorizedClientService.java
Outdated
Show resolved
Hide resolved
...a/org/springframework/security/oauth2/client/R2dbcReactiveOAuth2AuthorizedClientService.java
Outdated
Show resolved
Hide resolved
Hi @jgrandja, fixed all comments, format and checkstyle issues. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the updates @ovidiupopa91. I left a couple of minor comments.
Also, please squash the commits after you apply the last updates and we should be ready to merge.
...nt/src/main/resources/org/springframework/security/oauth2/client/oauth2-client-schema-h2.sql
Outdated
Show resolved
Hide resolved
...a/org/springframework/security/oauth2/client/R2dbcReactiveOAuth2AuthorizedClientService.java
Outdated
Show resolved
Hide resolved
5320ee1
to
56cf6eb
Compare
Implement R2dbcReactiveOuath2AuthorizedClientService which persists the Oauth2AuthorizedClient in a sql database R2dbcReactiveOuath2AuthorizedClientService is using the spring-r2dbc module to persist/load Oauth2AuthorizedClient to/from a sql database Add optional depedency to the spring-r2dbc module Add test compile dependencies to r2dbc-h2 and r2dbc-test Closes spring-projectsgh-7890
Thanks for the great work @ovidiupopa91 ! This is now in master. |
Implement R2dbcReactiveOuath2AuthorizedClientService which persists the
Oauth2AuthorizedClient in a sql database
Update gradle properties to use the 5.3.0-SNAPSHOT version of spring
framework (take advantage of the r2dbc integration)
Add optional depedency to the spring-r2dbc module
Add test compile dependencies to r2dbc-h2 and r2dbc-test
Closes gh-7890