Conversation
Spring Framework 7.1 removed HandlerMappingIntrospector and MatchableHandlerMapping; drop the interface, match() delegation, and the unit test that covered pattern matching via the selected delegate. Closes spring-projects#2582 Signed-off-by: arimu1 <19286898+arimu1@users.noreply.github.com>
ruthst00
suggested changes
Sep 15, 2026
|
|
||
| @Nullable | ||
| @Override | ||
| public PathPatternParser getPatternParser() { |
There was a problem hiding this comment.
Consider removing or making getPatternParser() package-private since it's no longer part of any interface.
| @@ -1,2 +1,2 @@ | |||
| /* | |||
| * Copyright 2015-2022 original author or authors. | |||
There was a problem hiding this comment.
Update test file copyright year from 2015-2022 to 2015-present
| @@ -42,7 +40,7 @@ | |||
| * @author Oliver Gierke | |||
| /** | ||
| * Unit tests for {@link DelegatingHandlerMapping}. | ||
| * | ||
| * @author Oliver Gierke |
This branch has not been deployed
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.
Summary
MatchableHandlerMappingonDelegatingHandlerMappingand implementHandlerMappingdirectly.match()and the relatedHandlerSelectionResultdelegation logic that existed forHandlerMappingIntrospector.Closes #2582
Test plan
./mvnw -pl spring-data-rest-webmvc -am test(JDK 21)