Allow Authentication from Accepted Locations Only with Spring Security 1. Overview In this tutorial, we’ll focus on a very interesting security feature – securing the account of a user based on their location. Simply put, we’ll block any login from unusual or non-standard locations and allow the user to enable… Continue Reading spring-security-restrict-authentication-by-geography

Converting a Collection to ArrayList in Java 1. Overview Converting Java collections from one type to another is a common programming task. In this tutorial, we’ll convert any type of Collection to an ArrayList. Throughout the tutorial, we’ll assume that we already have a collection of Foo objects. From there, we’ll… Continue Reading java-convert-collection-arraylist