Document Vavr collection types as query method parameters - #3526
Open
AzazelSensei wants to merge 2 commits into
Open
Document Vavr collection types as query method parameters#3526AzazelSensei wants to merge 2 commits into
AzazelSensei wants to merge 2 commits into
Conversation
The section only talked about return types. Seq/Set/Map are unwrapped to Java collections on the way in, so IN queries work. Option unwraps to its value or null, not to Optional. Fixes spring-projects#3525 Signed-off-by: Abdullah <89297042+AzazelSensei@users.noreply.github.com>
AzazelSensei
force-pushed
the
docs/3525-vavr-query-params
branch
from
August 13, 2026 15:22
5cd587d to
cc3441e
Compare
|
Hi, @AzazelSensei, I have a couple of suggestions to make the documentation clearer and cover the items mentioned in the #3525 issue: 1. Refine phrasing in
|
Author
|
Took your wording. The Vavr section now has the 2.0 unwrap, Traversable, and the findAllByIdIn example. Table row mentions parameters too. |
Cover the 2.0 unwrap, Traversable, and the table row. Signed-off-by: Abdullah <89297042+AzazelSensei@users.noreply.github.com>
AzazelSensei
force-pushed
the
docs/3525-vavr-query-params
branch
from
August 14, 2026 09:40
be9e75e to
a2e8fc5
Compare
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The Vavr section only talked about return types. Those wrappers are also unwrapped on the way in (ParametersParameterAccessor / QueryExecutionConverters), so findByStatusIn(io.vavr.collection.List) is a regular IN clause.
Fixes #3525