This blog post contains my personal experience and opinions on how to become a better developer.
[Read More]
Password Encoder Migration with Spring Security 5
Recently I was working in a project that used a custom PasswordEncoder and there was a requirement to migrate it to
bcrypt. The current passwords are stored as hash which means it’s not
possible to revert it to the original String - at least not in an easy way.
[Read More]
Centralized Authorization with OAuth2 + Opaque Tokens using Spring Boot 2
If you are looking for JWT implementation please follow this link
[Read More]
Centralized Authorization with OAuth2 + JWT using Spring Boot 2
This guide walks through the process to create a centralized authentication and authorization server with Spring Boot 2,
a demo resource server will also be provided.
[Read More]
Graceful Shutdown Spring Boot Applications
This guide walks through the process of graceful shutdown a Spring Boot
application.
[Read More]