Introduction to Functional Java 1. Overview In this tutorial, we’ll provide a quick overview of the Functional Java library along with a few examples. 2. The Functional Java Library The Functional Java library is an open source library meant to facilitate functional programming in Java. The library provides lots of basic… Continue Reading java-functional-library

Guide to Java Parallel Collectors Library 1. Introduction Parallel-collectors is a small library that provides a set of Java Stream API collectors that enable parallel processing – while at the same time circumventing main deficiencies of standard Parallel Streams. 2. Maven Dependencies If we want to start using the library,… Continue Reading java-parallel-collectors

Bootstrapping JPA Programmatically in Java 1. Overview Most JPA-driven applications make heavy use of the “persistence.xml” file for getting a JPA implementation, such as Hibernate or OpenJPA. Our approach here provides a centralized mechanism for configuring one or more persistence units and the associated persistence contexts. And while this approach isn’t… Continue Reading java-bootstrap-jpa