Spring Boot Authentication Auditing Support 1. Overview In this short article, we’ll explore the Spring Boot Actuator module and the support for publishing authentication and authorization events in conjunction with Spring Security. 2. Maven Dependencies First, we need to add the spring-boot-starter-actuator to our pom.xml: <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> <version>2.1.7.RELEASE</version> </dependency>… Continue Reading spring-boot-authentication-audit

Sorting Arrays in Java 1. Overview In this tutorial, we’ll discuss common methods to sort arrays in ascending and descending order. We’ll look at using Java’s Arrays class sorting method as well as implementing our own Comparator to order our arrays’ values. 2. Object Definitions Before we begin, let’s quickly define a few… Continue Reading java-sorting-arrays

Third Round of Improvements to the Reddit Application 1. Overview In this article we’re going to keep moving our little case study app forward by implementing small but useful improvements to the already existing features. 2. Better Tables Let’s start by using the jQuery DataTables plugin to replace the old,… Continue Reading reddit-web-app-improvements-3