Skip to content

Commit b8009ac

Browse files
committed
Polishing.
1 parent 988888d commit b8009ac

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/main/antora/modules/ROOT/pages/repositories-null-handling.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ See "`xref:repository-query-return-types-reference.adoc[Repository query return
1616
[[repositories.nullability.annotations]]
1717
== Nullability Annotations
1818

19-
You can express nullability constraints for repository methods by using {spring-framework-docs}/core.html#null-safety[Spring Framework's nullability annotations].
19+
You can express nullability constraints for repository methods by using {spring-framework-docs}/core/null-safety.html[Spring Framework's nullability annotations].
2020
They provide a tooling-friendly approach and opt-in `null` checks during runtime, as follows:
2121

2222
* {spring-framework-javadoc}/org/springframework/lang/NonNullApi.html[`@NonNullApi`]: Used on the package level to declare that the default behavior for parameters and return values is, respectively, neither to accept nor to produce `null` values.

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ The type to which the JSON object is unmarshalled is determined by inspecting th
439439
The infrastructure eventually selects the appropriate repository to handle the object that was deserialized.
440440

441441
To instead use XML to define the data the repositories should be populated with, you can use the `unmarshaller-populator` element.
442-
You configure it to use one of the XML marshaller options available in Spring OXM. See the {spring-framework-docs}/data-access.html#oxm[Spring reference documentation] for details.
442+
You configure it to use one of the XML marshaller options available in Spring OXM. See the {spring-framework-docs}/data-access/oxm.html[Spring reference documentation] for details.
443443
The following example shows how to unmarshall a repository populator with JAXB:
444444

445445
.Declaring an unmarshalling repository populator (using JAXB)

src/main/antora/modules/ROOT/pages/repositories/create-instances.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ By default, the infrastructure picks up every interface that extends the persist
6565
However, you might want more fine-grained control over which interfaces have bean instances created for them.
6666
To do so, use filter elements inside the repository declaration.
6767
The semantics are exactly equivalent to the elements in Spring's component filters.
68-
For details, see the {spring-framework-docs}/core.html#beans-scanning-filters[Spring reference documentation] for these elements.
68+
For details, see the {spring-framework-docs}/core/beans/classpath-scanning.html[Spring reference documentation] for these elements.
6969

7070
For example, to exclude certain interfaces from instantiation as repository beans, you could use the following configuration:
7171

src/main/antora/modules/ROOT/pages/repositories/query-methods-details.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ NOTE: Not all Spring Data modules currently support `Stream<T>` as a return type
247247
[[repositories.query-async]]
248248
== Asynchronous Query Results
249249

250-
You can run repository queries asynchronously by using {spring-framework-docs}/integration.html#scheduling[Spring's asynchronous method running capability].
250+
You can run repository queries asynchronously by using {spring-framework-docs}/integration/scheduling.html[Spring's asynchronous method running capability].
251251
This means the method returns immediately upon invocation while the actual query occurs in a task that has been submitted to a Spring `TaskExecutor`.
252252
Asynchronous queries differ from reactive queries and should not be mixed.
253253
See the store-specific documentation for more details on reactive support.

0 commit comments

Comments
 (0)