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

NimbusReactiveJwtDecoder support mono chain #12521

Merged
merged 1 commit into from
Feb 7, 2023

Conversation

Park9eon
Copy link
Contributor

When using PublicKeyReactiveJwtDecoderBuilder and SecretKeyReactiveJwtDecoderBuilder, Supports reactive exception handling

// before
try {
    reactiveJwtDecoder.decode(jwt)
            .flatMap(...);
} catch (Exception exception) {
    onError(exception);
}
// after
reactiveJwtDecoder.decode(jwt)
        .doOnError(onError)
        .flatMap(...);

Supports reactive exception handling when using PublicKeyReactiveJwtDecoderBuilder and SecretKeyReactiveJwtDecoderBuilder
@pivotal-cla
Copy link

@Park9eon Please sign the Contributor License Agreement!

Click here to manually synchronize the status of this Pull Request.

See the FAQ for frequently asked questions.

@pivotal-cla
Copy link

@Park9eon Thank you for signing the Contributor License Agreement!

@spring-projects-issues spring-projects-issues added the status: waiting-for-triage An issue we've not yet triaged label Jan 11, 2023
@jzheaux jzheaux self-assigned this Feb 7, 2023
@jzheaux jzheaux added type: enhancement A general enhancement in: oauth2 An issue in OAuth2 modules (oauth2-core, oauth2-client, oauth2-resource-server, oauth2-jose) and removed status: waiting-for-triage An issue we've not yet triaged labels Feb 7, 2023
@jzheaux jzheaux added this to the 6.1.0-M2 milestone Feb 7, 2023
@jzheaux jzheaux merged commit 613b16c into spring-projects:main Feb 7, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
in: oauth2 An issue in OAuth2 modules (oauth2-core, oauth2-client, oauth2-resource-server, oauth2-jose) type: enhancement A general enhancement
Projects
Status: Done
Development

Successfully merging this pull request may close these issues.

4 participants