Introduction to jOOL 1. Overview In this article, we will be looking at the jOOL __ library – another product from jOOQ. 2. Maven Dependency Let’s start by adding a Maven dependency to your pom.xml: <dependency> <groupId>org.jooq</groupId> <artifactId>jool</artifactId> <version>0.9.12</version> </dependency> You can find the latest version here. 3. Functional Interfaces… Continue Reading jool

Differences Between JAR and WAR Packaging 1. Overview In this quick tutorial, we’ll focus on the differences between JAR and WAR packaging in Java. First, we’ll define each packaging option separately. Afterwards, we’ll summarize their differences. 2. JAR Packaging Simply put, JAR – or Java Archive – is a package… Continue Reading java-jar-war-packaging

Java Null-Safe Streams from Collections Java Java Collections Java Streams 1. Overview In this tutorial, we’ll see how to create null-safe streams from Java collections. To start with, some familiarity with Java 8’s Method References, Lambda Expressions, Optional and Stream API is required to fully understand this material. If you are… Continue Reading java-null-safe-streams-from-collections