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

Running a Spring Boot App with Maven vs an Executable War/Jar 1. Introduction In this tutorial, we’ll explore the differences between starting a Spring Boot web application via the mvn spring-boot:run command and running it after it is compiled into a jar/war package via the java -jar command. Let’s assume… Continue Reading spring-boot-run-maven-vs-executable-jar