Customizing the Result of JPA Queries with Aggregation Functions 1. Overview While Spring Data JPA can abstract the creation of queries to retrieve entities from the database in specific situations, we sometimes need to customize our queries, such as when we add aggregation functions. In this tutorial, we’ll focus on… Continue Reading jpa-queries-custom-result-with-aggregation-functions

Spring Validation Message Interpolation 1. Introduction Message interpolation is the process used for creating error messages for Java bean validation constraints. For example, we can see the messages by providing a null value for a field annotated with the javax.validation.constraints.NotNull annotation. In this tutorial, we’ll learn how to use the… Continue Reading spring-validation-message-interpolation