Traditionally, security in web applications has been implemented by keeping data about the logged-in user in the HTTP session. With microservices being inherently stateless, this approach is not suitable for a microservices architecture. To address security, MicroProfile has support for JSON Web Token (JWT).
JSON Web Tokens are a mechanism used to implement stateless security in microservices.
JWT is a JSON-based text format used for exchanging information between systems. JWT is an open standard, ...