Case Insensitive Queries with Spring Data Repository 1. Overview Spring Data JPA queries, by default, are case-sensitive. In other words, the field value comparisons are case-sensitive. In this tutorial, we’ll explore how to quickly create a case insensitive query in a Spring Data JPA repository. 2. Dependencies Firstly, let’s make… Continue Reading spring-data-case-insensitive-queries

Introduction to JSONassert 1. Overview In this article, we’ll have a look at the JSONAssert library – a library focused on understanding JSON data and writing complex JUnit tests using that data. 2. Maven Dependency First, let’s add the Maven dependency: <dependency> <groupId>org.skyscreamer</groupId> <artifactId>jsonassert</artifactId> <version>1.5.0</version> </dependency> Please check out the… Continue Reading jsonassert