-
Notifications
You must be signed in to change notification settings - Fork 6.1k
Closed
Labels
in: webAn issue in web modules (web, webmvc)An issue in web modules (web, webmvc)type: enhancementA general enhancementA general enhancement
Milestone
Description
DelegatingAuthenticationEntryPoint
currently uses a LinkedHashMap<RequestMatcher,AuthenticationEntryPoint>
which is not ideal since:
- There is no need to lookup the
AuthenticationEntryPoint
byRequestMatcher
and there is extra unnecessary overhead in using aMap
. This is just being done to group the two values together. - Order is really the primary concern here since each entry is considered in order, so a
List
is more appropriate.
DelegatingAuthenticationEntryPoint
should use List<RequestMatcherEntry<AuthenticationEntryPoint>>
instead.
Metadata
Metadata
Assignees
Labels
in: webAn issue in web modules (web, webmvc)An issue in web modules (web, webmvc)type: enhancementA general enhancementA general enhancement