Fix Antora feature-scroll attribute.

Signed-off-by: Dmitry Sulman <dmitry.sulman@gmail.com>

Closes #3262
This commit is contained in:
Dmitry Sulman
2025-03-29 21:48:15 +03:00
committed by Mark Paluch
parent 89a41a7354
commit 1bade16937
3 changed files with 3 additions and 4 deletions

View File

@@ -3,7 +3,6 @@
Oliver Gierke; Thomas Darimont; Christoph Strobl; Mark Pollack; Thomas Risberg; Mark Paluch; Jay Bryant Oliver Gierke; Thomas Darimont; Christoph Strobl; Mark Pollack; Thomas Risberg; Mark Paluch; Jay Bryant
:revnumber: {version} :revnumber: {version}
:revdate: {localdate} :revdate: {localdate}
:feature-scroll: true
(C) 2008-2025 The original authors. (C) 2008-2025 The original authors.

View File

@@ -1,5 +1,6 @@
[[repositories.core-concepts]] [[repositories.core-concepts]]
= Core concepts = Core concepts
:feature-scroll:
The central interface in the Spring Data repository abstraction is `Repository`. The central interface in the Spring Data repository abstraction is `Repository`.
It takes the domain class to manage as well as the identifier type of the domain class as type arguments. It takes the domain class to manage as well as the identifier type of the domain class as type arguments.

View File

@@ -1,5 +1,6 @@
[[repositories.query-methods.details]] [[repositories.query-methods.details]]
= Defining Query Methods = Defining Query Methods
:feature-scroll:
The repository proxy has two ways to derive a store-specific query from the method name: The repository proxy has two ways to derive a store-specific query from the method name:
@@ -457,10 +458,10 @@ ifdef::feature-scroll[]
| `limit + 1` at `OffsetScrollPosition.getOffset()` | `limit + 1` at `OffsetScrollPosition.getOffset()`
| One to many queries fetching data starting at `OffsetScrollPosition.getOffset()` applying limiting. | One to many queries fetching data starting at `OffsetScrollPosition.getOffset()` applying limiting.
a| A `Window` can only navigate to the next `Window`. a| A `Window` can only navigate to the next `Window`.
endif::[]
* `Window` provides details whether there is more data to fetch. * `Window` provides details whether there is more data to fetch.
* Offset-based queries becomes inefficient when the offset is too large because the database still has to materialize the full result. * Offset-based queries becomes inefficient when the offset is too large because the database still has to materialize the full result.
endif::[]
| `Page<T>` | `Page<T>`
| `Pageable.getPageSize()` at `Pageable.getOffset()` | `Pageable.getPageSize()` at `Pageable.getOffset()`
@@ -518,8 +519,6 @@ QSort sort = QSort.by(QPerson.firstname.asc())
.and(QSort.by(QPerson.lastname.desc())); .and(QSort.by(QPerson.lastname.desc()));
---- ----
ifdef::feature-scroll[]
endif::[]
[[repositories.limit-query-result]] [[repositories.limit-query-result]]
=== Limiting Query Results === Limiting Query Results