Spring Security – Persistent Remember Me 1. Overview This article will show how to set up the Remember Me functionality in Spring Security – using not the standard cookie only approach but a more secure solution, using persistence. As a quick intro – Spring can be configured to remember login… Continue Reading spring-security-persistent-remember-me

Two Login Pages with Spring Security 1. Introduction In this tutorial, we will see how we can configure Spring Security to work with two different login pages using two different Spring Security http elements in the configuration. 2. Configuring 2 Http Elements One of the situations in which we may… Continue Reading spring-security-two-login-pages

Spring Security 5 – OAuth2 Login 1. Overview Spring Security 5 introduces a new OAuth2LoginConfigurer class that we can use for configuring an external Authorization Server. In this article, we’ll explore some of the various configuration options available for the oauth2Login() element. 2. Maven Dependencies In addition to the standard… Continue Reading spring-security-5-oauth2-login