From b4674b4158859cc9de5c9f77577e2ee90966b759 Mon Sep 17 00:00:00 2001 From: Georgios Andrianakis Date: Tue, 30 Jul 2024 10:00:35 +0300 Subject: [PATCH] Add a note about JpaSpecificationExecutor not being supported Relates to: #4040 --- docs/src/main/asciidoc/spring-data-jpa.adoc | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/src/main/asciidoc/spring-data-jpa.adoc b/docs/src/main/asciidoc/spring-data-jpa.adoc index cb41a8bc350d0..52c20b03c83e4 100644 --- a/docs/src/main/asciidoc/spring-data-jpa.adoc +++ b/docs/src/main/asciidoc/spring-data-jpa.adoc @@ -599,6 +599,7 @@ An extensive list of examples can be seen in the https://github.com/quarkusio/qu * Methods of the `org.springframework.data.repository.query.QueryByExampleExecutor` interface - if any of these are invoked, a Runtime exception will be thrown. * QueryDSL support. No attempt will be made to generate implementations of the QueryDSL related repositories. +* Using `org.springframework.data.jpa.repository.JpaSpecificationExecutor` * Customizing the base repository for all repository interfaces in the code base. ** In Spring Data JPA this is done by registering a class that extends `org.springframework.data.jpa.repository.support.SimpleJpaRepository` however in Quarkus this class is not used at all (since all the necessary plumbing is done at build time). Similar support might be added to Quarkus in the future.