Programmer DD
Programmer DD
Oct 20, 2021 · Backend Development

Master JWT: Secure Token Authentication with Spring Boot, Angular & JJWT

This guide explains what JWT is, its structure, security best practices, and demonstrates a complete implementation using the JJWT Java library together with Spring Boot and Angular, including Maven setup, filter, controllers, and a front‑end example to authenticate users and enforce role‑based access.

AngularAuthenticationJSON Web Token
0 likes · 14 min read
Master JWT: Secure Token Authentication with Spring Boot, Angular & JJWT
Programmer DD
Programmer DD
Nov 30, 2019 · Information Security

Is JWT a Silver Bullet? Benefits, Risks, and Java Implementation Explained

This article introduces the concept of JSON Web Tokens, explains their structure and core principles, walks through creating and parsing JWTs with Java, compares their advantages and disadvantages to traditional session authentication, and offers practical guidelines for securely handling JWTs in real‑world applications.

JSON Web TokenJava
0 likes · 14 min read
Is JWT a Silver Bullet? Benefits, Risks, and Java Implementation Explained
Programmer DD
Programmer DD
Apr 16, 2018 · Information Security

How JWT Enables Secure, Login‑Free Friend Requests in Web Apps

This article explains the JSON Web Token (JWT) format, its three-part structure, how to encode a payload and header with Base64, sign the token using HS256, and apply the resulting JWT to a friend‑request scenario that works without requiring the recipient to log in.

Base64JSON Web TokenJWT
0 likes · 8 min read
How JWT Enables Secure, Login‑Free Friend Requests in Web Apps