Spring Security Refresh Token with JWT in Spring Boot

In previous post, we’ve known how to build Token based Authentication & Authorization with Spring Security & JWT. This tutorial will continue to make JWT Refresh Token with Spring Security in the Java Spring Boot Application. You can know how to expire the JWT Token, then renew the Access Token with Refresh Token and HttpOnly Cookie.

Related Posts:

Deployment:
Deploy Spring Boot App on AWS – Elastic Beanstalk
Docker Compose: Spring Boot and MySQL example

The code in this post bases on previous article that you need to read first:
Spring Boot JWT Auth example with H2 Database
Spring Boot JWT Auth example with MySQL
Spring Boot JWT Auth example with MongoDB

Read More

WebSecurityConfigurerAdapter Deprecated in Spring Boot

From Spring Boot 2.7, WebSecurityConfigurerAdapter is deprecated. In this tutorial, I will show you how to update your Web Security Config class in Spring Security without the WebSecurityConfigurerAdapter example.

Related Posts:
In-depth Introduction to JWT-JSON Web Token
Spring Boot, Spring Security example with JWT
Spring Boot, Spring Security example with JWT and MySQL/PostgreSQL
Spring Boot, Spring Security example with JWT and MongoDB

Read More