SpringBoot REST API + JWT + Spring Security

Summary In this blog post, We will learn how to securing Spring boot REST API with Spring security and JWTs (JSON Web Tokens) if you are new to JWTs Token Please follow my previous blog post about What is JWT Token?. In this post, I used Already develope Spring Boot REST API from my previous … Continue reading SpringBoot REST API + JWT + Spring Security

What is JWT Token ?

JSON Web Token (JWT) is an open standard (RFC 7519) that defines a compact and self-contained way for securely transmitting information between parties as a JSON object. This information can be verified and trusted because it is digitally signed. JWTs can be signed using a secret or a public/private key pair using What is the … Continue reading What is JWT Token ?