-
Notifications
You must be signed in to change notification settings - Fork 38.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Revisit HttpHeaders
implementing the MultiValueMap
API
#33913
Labels
in: web
Issues in web modules (web, webmvc, webflux, websocket)
type: enhancement
A general enhancement
Milestone
Comments
HttpHeaders
implementing the MultiValueMap
API
Keeping track of notable areas where we check for generic
|
Notable possible additions to
|
simonbasle
added a commit
that referenced
this issue
Dec 26, 2024
This was referenced Jan 23, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
in: web
Issues in web modules (web, webmvc, webflux, websocket)
type: enhancement
A general enhancement
See #33823 : the
MultiValueMap
methods that iterate over the whole header collection misalign with some underlying server implementations.On the other hand having
HttpHeaders
implementMultiValueMap
brings in some (marginal?) benefits: usingCollectionUtils
, asserting headers with map-specific assertions, putting all the headers into a plainMap
(map.putAll(headers)
), etc...The text was updated successfully, but these errors were encountered: