Skip to content

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
None yet
Development

Successfully merging this pull request may close these issues.

4 participants