Introduction to Spring Security Taglibs 1. Overview In this tutorial, we’ll take a look at Spring Security Taglibs, which provides basic support for accessing security information and applying security constraints in JSPs. 2. Maven Dependencies First of all, let’s add the spring-security-taglibs dependency to our pom.xml: <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-taglibs</artifactId> <version>5.0.7.RELEASE</version> </dependency>… Continue Reading spring-security-taglibs

Custom Thread Pools In Java 8 Parallel Streams 1. Overview Java 8 introduced the concept of Streams as an efficient way of carrying out bulk operations on data. And parallel Streams can be obtained in environments that support concurrency. These streams can come with improved performance – at the cost… Continue Reading java-8-parallel-streams-custom-threadpool

A Reddit Application with Spring This Case Study follows a new author through the creation of a small web application with Spring from the ground up. The app helps users manage their posting to Reddit by scheduling Posts, determining the best times to post, re-trying posts when they’re not immediately… Continue Reading case-study-a-reddit-app-with-spring