-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tweak Querydsl lettercasing in the docs. See #447
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
[[ldap.querydsl]] | ||
= QueryDSL Support | ||
Basic QueryDSL support is included in Spring LDAP. This support includes the following: | ||
= Querydsl Support | ||
Basic Querydsl support is included in Spring LDAP. This support includes the following: | ||
|
||
* An Annotation Processor, `LdapAnnotationProcessor`, for generating QueryDSL classes based on Spring LDAP ODM annotations. | ||
* An Annotation Processor, `LdapAnnotationProcessor`, for generating Querydsl classes based on Spring LDAP ODM annotations. | ||
See https://docs.spring.io/spring-ldap/docs/{springLdapVersion}/reference/#odm[Object-Directory Mapping] for more information on the ODM annotations. | ||
* A Query implementation, `QueryDslLdapQuery`, for building and running QueryDSL queries in code. | ||
* Spring Data repository support for QueryDSL predicates. `QueryDslPredicateExecutor` includes a number of additional methods with appropriate parameters. | ||
* A Query implementation, `QueryDslLdapQuery`, for building and running Querydsl queries in code. | ||
* Spring Data repository support for Querydsl predicates. `QueryDslPredicateExecutor` includes a number of additional methods with appropriate parameters. | ||
You can extend this interface (along with `LdapRepository`) to include this support in your repository. |