Skip to content

Commit cb1dfaf

Browse files
committed
Fix Antora feature-scroll attribute
Signed-off-by: Dmitry Sulman <[email protected]>
1 parent f4e9581 commit cb1dfaf

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

Diff for: src/main/antora/modules/ROOT/pages/index.adoc

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
Oliver Gierke; Thomas Darimont; Christoph Strobl; Mark Pollack; Thomas Risberg; Mark Paluch; Jay Bryant
44
:revnumber: {version}
55
:revdate: {localdate}
6-
:feature-scroll: true
76

87
(C) 2008-2025 The original authors.
98

Diff for: src/main/antora/modules/ROOT/pages/repositories/core-concepts.adoc

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[[repositories.core-concepts]]
22
= Core concepts
3+
:feature-scroll:
34

45
The central interface in the Spring Data repository abstraction is `Repository`.
56
It takes the domain class to manage as well as the identifier type of the domain class as type arguments.

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

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[[repositories.query-methods.details]]
22
= Defining Query Methods
3+
:feature-scroll:
34

45
The repository proxy has two ways to derive a store-specific query from the method name:
56

@@ -457,10 +458,10 @@ ifdef::feature-scroll[]
457458
| `limit + 1` at `OffsetScrollPosition.getOffset()`
458459
| One to many queries fetching data starting at `OffsetScrollPosition.getOffset()` applying limiting.
459460
a| A `Window` can only navigate to the next `Window`.
460-
endif::[]
461461

462462
* `Window` provides details whether there is more data to fetch.
463463
* Offset-based queries becomes inefficient when the offset is too large because the database still has to materialize the full result.
464+
endif::[]
464465

465466
| `Page<T>`
466467
| `Pageable.getPageSize()` at `Pageable.getOffset()`
@@ -518,8 +519,6 @@ QSort sort = QSort.by(QPerson.firstname.asc())
518519
.and(QSort.by(QPerson.lastname.desc()));
519520
----
520521

521-
ifdef::feature-scroll[]
522-
endif::[]
523522

524523
[[repositories.limit-query-result]]
525524
=== Limiting Query Results

0 commit comments

Comments
 (0)