Guide to AWS Aurora RDS with Java 1. Introduction Amazon Aurora is a MySQL and PostgreSQL compatible relational database built for the cloud that combines the performance and availability of high-end commercial databases with the simplicity and cost-effectiveness of open source databases. In this tutorial, we’ll cover how to create and interact… Continue Reading aws-aurora-rds-java

Interpolation Search in Java 1. Introduction In this tutorial, we’ll walk through interpolation search algorithms and discuss their pros and cons. Furthermore, we’ll implement it in Java and talk about the algorithm’s time complexity. 2. Motivation Interpolation search is an improvement over binary search tailored for uniformly distributed data. Binary… Continue Reading java-interpolation-search

Serialize Only Fields that meet a Custom Criteria with Jackson 1. Overview This tutorial is going to illustrate how we can use Jackson to only serialize a field if it meets a specific, custom criteria. For example, say we only want to serialize an integer value if it’s positive –… Continue Reading jackson-serialize-field-custom-criteria

Accessing Spring MVC Model Objects in JavaScript 1. Overview In this tutorial, we’re going to show how to access Spring MVC objects in Thymeleaf views that contain JavaScript code. We’ll use Spring Boot and the Thymeleaf template engine in our examples, but the idea works for other template engines as well.… Continue Reading spring-mvc-model-objects-js