Compare Two JSON Objects with Jackson 1. Overview In this article, we’ll have a look at comparing two JSON objects using Jackson – a JSON processing library for Java. 2. Maven Dependency First, let’s add the jackson-databind Maven dependency: <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.9.8</version> </dependency> 3. Using Jackson to Compare Two… Continue Reading jackson-compare-two-json-objects

Setting the MySQL JDBC Timezone Using Spring Boot Configuration 1. Overview Sometimes, when we’re storing dates in MySQL, we realize that the date from the database is different from our system or JVM. Other times, we just need to run our app with another timezone. In this tutorial, we’re going… Continue Reading mysql-jdbc-timezone-spring-boot