Skip to content

Commit a3a3e22

Browse files
committed
Refine Querydsl documentation.
See #4894
1 parent bfaa81e commit a3a3e22

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

src/main/antora/modules/ROOT/pages/repositories/core-extensions.adoc

+7-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ It provides the following features:
2222
* Adapts better to refactoring changes in domain types.
2323
* Incremental query definition is easier.
2424

25-
See the http://www.querydsl.com/static/querydsl/latest/reference/html/[QueryDSL documentation] for how to bootstrap your environment for APT-based code generation using Maven or Ant.
25+
See the http://www.querydsl.com/static/querydsl/latest/reference/html/[Querydsl documentation] for how to bootstrap your environment for APT-based code generation using Maven or Ant.
2626

2727
QueryDSL lets you write queries such as the following:
2828

@@ -50,7 +50,7 @@ Flux<Person> result = repository.findAll(person.address.zipCode.eq("C0123"));
5050
======
5151

5252
`QPerson` is a class that is generated by the Java annotation processor.
53-
See xref:#mongodb.repositories.queries.type-safe.apt[Setting up Annotation Processing] for how to setup Annotation Processing with your Build System.
53+
See xref:#mongodb.repositories.queries.type-safe.apt[Setting up Annotation Processing] for how to set up Annotation Processing with your Build System.
5454
It is a `Predicate` that lets you write type-safe queries.
5555
Notice that there are no strings in the query other than the `C0123` value.
5656

@@ -160,6 +160,11 @@ Maven::
160160
[source,xml,indent=0,subs="verbatim,quotes",role="primary"]
161161
----
162162
<dependencies>
163+
<dependency>
164+
<groupId>org.springframework.data</groupId>
165+
<artifactId>spring-data-mongodb</artifactId>
166+
</dependency>
167+
163168
<dependency>
164169
<groupId>com.querydsl</groupId>
165170
<artifactId>querydsl-mongodb</artifactId>

0 commit comments

Comments
 (0)