REST Query Language Over Multiple Tables with Querydsl Web Support REST Spring 1. Overview In this tutorial, we’ll continue with the second part of Spring Data Querydsl Web Support. Here, we’ll focus on associated entities and how to create queries over HTTP. Following the same configuration used in part one, we’ll… Continue Reading rest-querydsl-multiple-tables

Logging Spring WebClient Calls 1. Overview In this tutorial, we are going to show how to customize Spring’s WebClient – a reactive HTTP client – to log requests and responses. 2. WebClient WebClient is a reactive and non-blocking interface for HTTP requests, based on Spring WebFlux. It has a functional,… Continue Reading spring-log-webclient-calls

Spring Data JPA – Adding a Method in All Repositories 1. Overview Spring Data makes the process of working with entities a lot easier by merely defining repository interfaces. These come with a set of pre-defined methods and allow the possibility of adding custom methods in each interface. However, if… Continue Reading spring-data-jpa-method-in-all-repositories