Skip to content

microprofile/microprofile-jwt-auth

Folders and files

NameName
Last commit message
Last commit date
Sep 26, 2024
Mar 27, 2025
Mar 27, 2025
Mar 27, 2025
Aug 7, 2017
Aug 16, 2017
Sep 7, 2021
May 30, 2017
Sep 10, 2021
Dec 9, 2020
Mar 27, 2025
Mar 23, 2018

Repository files navigation

JWT RBAC for MicroProfile

Introduction

Today, the most common solutions involving RESTful and microservices security are based on OpenID Connect (OIDC), OAuth2 and JSON Web Token (JWT) standards.

This specification outlines how the signed JWT tokens issued by OIDC and other trusted providers can be verified and their claims used for Role Based Access Control (RBAC) of microservice endpoints.

Motivation

For RESTful based microservices, security tokens in a JWT format offer a lightweight and interoperable way to propagate identities across different services, where:

  • Services don’t need to store any state about clients or users

  • Services can verify and introspect the token locally if it follows a JWT format or remotely with the trusted provider.

  • Services can identify the caller and verify a given service is indeed an indended audience of the token.

  • Services can enforce authorization policies based on the information within the token.

  • Services can use the token for both delegation and impersonation of identities.

Documentation

For links to the latest maven artifacts, Javadoc and specification document, see the latest release.