Skip to content

Commit

Permalink
Polishing.
Browse files Browse the repository at this point in the history
Fix Querydsl lettercasing.

See #3243
  • Loading branch information
mp911de committed Feb 13, 2025
1 parent 8f3bb79 commit 906d581
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ For more information, see the https://github.com/spring-projects/spring-data-exa
[[core.web.type-safe]]
== Querydsl Web Support

For those stores that have http://www.querydsl.com/[QueryDSL] integration, you can derive queries from the attributes contained in a `Request` query string.
For those stores that have http://www.querydsl.com/[Querydsl] integration, you can derive queries from the attributes contained in a `Request` query string.

Consider the following query string:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ interface UserRepository extends CrudRepository<User, Long>, CustomizedUserRepos
Extending the fragment interface with your repository interface combines the CRUD and custom functionality and makes it available to clients.

Spring Data repositories are implemented by using fragments that form a repository composition.
Fragments are the base repository, functional aspects (such as xref:repositories/core-extensions.adoc#core.extensions.querydsl[QueryDsl]), and custom interfaces along with their implementations.
Fragments are the base repository, functional aspects (such as xref:repositories/core-extensions.adoc#core.extensions.querydsl[Querydsl]), and custom interfaces along with their implementations.
Each time you add an interface to your repository interface, you enhance the composition by adding a fragment.
The base repository and repository aspect implementations are provided by each Spring Data module.

Expand Down

0 comments on commit 906d581

Please sign in to comment.