Introduction to Smooks 1. Overview In this tutorial, we’ll introduce the Smooks framework. We’ll describe what it’s, list its key features, and eventually learn how to use some of its more advanced functionality. First of all, let’s briefly explain what the framework is meant to achieve. 2. Smooks Smooks is… Continue Reading smooks

Apache Commons BeanUtils 1. Overview Apache Commons BeansUtils contains all tools necessary for working with Java beans. Simply put, a bean is a simple Java classes containing fields, getters/setters, and a no-argument constructor. Java provides reflection and introspection capabilities to identify getter-setter methods and call them dynamically. However, these APIs… Continue Reading apache-commons-beanutils

Introduction to Conflict-Free Replicated Data Types Cloud Data 1. Overview In this article, we’ll look at conflict-free replicated data types (CRDT) and how to work with them in Java. For our examples, we’ll use implementations from the wurmloch-crdt library. When we have a cluster of N replica nodes in a… Continue Reading java-conflict-free-replicated-data-types