Implementing Stateless Authentication with JSON Web Tokens in Spring Boot 2.x
Transitioning from Session-Based to Stateless Authentication
Traditional HTTP sessions maintain user state directly on the server. During authentication, the server creates a session object, persists it in memory or a shared cache, and returns a session identifier embedded in a client-side cookie. Every subsequent request automatically attaches ...
Posted on Mon, 29 Jun 2026 17:00:30 +0000 by shashiku
JSON Web Token Security: Implementation and Best Practices
JSON Web Token (JWT) is a compact, URL-safe means of representing claims to be transferred between two parties. It serves as a mechanism for authentication in HTTP communications, addressing the stateless nature of the protocol.
Unlike traditional session-based authentication where server-side storage is required, JWT enables stateless authenti ...
Posted on Mon, 22 Jun 2026 18:50:47 +0000 by gandelf1000