From cc1c8010f7cc14fbd732521594bf02c8b235972a Mon Sep 17 00:00:00 2001 From: Vlad Mihalcea Date: Thu, 12 Oct 2023 17:03:27 +0300 Subject: [PATCH] Add Query utilities documentation --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index b92ffada8..d66b296ee 100644 --- a/README.md +++ b/README.md @@ -351,6 +351,11 @@ The `your.repository.package` is the Java package of your Spring repositories. * [`SQLStatementCountValidator` - How to detect the Hibernate N+1 query problem during testing](https://vladmihalcea.com/how-to-detect-the-n-plus-one-query-problem-during-testing/) +##### Query Utilities + +* [`SQLExtract` - How to get the SQL query from JPQL or JPA Criteria](https://vladmihalcea.com/get-sql-from-jpql-or-criteria/) +* [`QueryStackTraceLogger` - How to find the source of an SQL query generated by Hibernate](https://vladmihalcea.com/source-sql-query-hibernate/) + ### Requirements * Java version supported by the Hibernate ORM version you are using.