Pagination with Spring REST and AngularJS table 1. Overview In this article, we will mainly focus on implementing server side pagination in a Spring REST API and a simple AngularJS front-end. We’ll also explore a commonly used table grid in Angular named UI Grid. 2. Dependencies Here we detail various… Continue Reading pagination-with-a-spring-rest-api-and-an-angularjs-table

Guide to JUnit 5 Parameterized Tests 1. Overview JUnit 5, the next generation of JUnit, facilitates writing developer tests with new and shiny features. One such feature is parameterized tests. This feature enables us to execute a single test method multiple times with different parameters. In this tutorial, we’re going… Continue Reading parameterized-tests-junit-5

Avoiding the ConcurrentModificationException in Java Java Exception 1. Introduction In this article, we’ll take a look at the ConcurrentModificationException class. First, we’ll give an explanation how it works, and then prove it by using a test for triggering it. Finally, we’ll try out some workarounds by using practical examples. 2.… Continue Reading java-concurrentmodificationexception