From 0d76b47119e366e75bbedb663c74269f82e01b12 Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Wed, 22 Jan 2025 11:02:17 +0100 Subject: [PATCH] Document OpenFeign Querydsl support. Closes #3236 --- .../modules/ROOT/pages/repositories/core-extensions.adoc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/antora/modules/ROOT/pages/repositories/core-extensions.adoc b/src/main/antora/modules/ROOT/pages/repositories/core-extensions.adoc index 07a51ab5a..a9fb4c3d8 100644 --- a/src/main/antora/modules/ROOT/pages/repositories/core-extensions.adoc +++ b/src/main/antora/modules/ROOT/pages/repositories/core-extensions.adoc @@ -9,6 +9,9 @@ Currently, most of the integration is targeted towards Spring MVC. http://www.querydsl.com/[Querydsl] is a framework that enables the construction of statically typed SQL-like queries through its fluent API. +NOTE: Querydsl maintenance has slowed down to a point where the community has forked the project under OpenFeign at https://github.com/OpenFeign/querydsl (groupId `io.github.openfeign.querydsl`). +Spring Data supports the fork on a best-effort basis. + Several Spring Data modules offer integration with Querydsl through `QuerydslPredicateExecutor`, as the following example shows: .QuerydslPredicateExecutor interface