You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If no Accept header field is present, then it is assumed that the client accepts all media types. *If an Accept header field is present, and if the server cannot send a response which is acceptable according to the combined Accept field value, then the server SHOULD send a 406 (not acceptable) response.*
Please note that it says SHOULD, and not MUST:
3. SHOULD This word, or the adjective "RECOMMENDED", mean that there
may exist valid reasons in particular circumstances to ignore a
particular item, but the full implications must be understood and
carefully weighed before choosing a different course.
So, a patch release of Spring seems to be enforcing a more strict behaviour, disallowing something allowed (albeit not recommended) by RFC, and breaking existing applications.
A workaround is possible by having a nasty servlet filter that manipulates headers, and adds application/*+json when application/json is in Accept... but, considering this is a patch release, I suggest you consider this behaviour change a bug, as it has backward-compatibility implications, and try not to break acceptable flows.
This should be resolved now. I've made a change to use the media type from the ResponseEntity unconditionally. It was actually the intent of #20720 to allow the controller to specify the content type of the response, but the checks against the requested content type were left in place, but are now removed.
Ah, this means that the behaviour is unintended and that 5.0.3 will behave as 5.0.1? that's good, thanks. I will revert to 5.0.1 and remove the hacky filter workarounds.
Francisco Lozano opened SPR-16251 and commented
Scenario:
This was seemingly OK with 5.0.1 and before. After upgrading to 5.0.2, it forces to return 406, despite the ResponseEntity saying otherwise.
The commit that caused it is:
9a894ab#diff-24571dc5c7743b2a69f7a5df4f2109b2
The RFC says:
Please note that it says SHOULD, and not MUST:
So, a patch release of Spring seems to be enforcing a more strict behaviour, disallowing something allowed (albeit not recommended) by RFC, and breaking existing applications.
A workaround is possible by having a nasty servlet filter that manipulates headers, and adds application/*+json when application/json is in Accept... but, considering this is a patch release, I suggest you consider this behaviour change a bug, as it has backward-compatibility implications, and try not to break acceptable flows.
Affects: 5.0.2
Issue Links:
Referenced from: commits fda0885
The text was updated successfully, but these errors were encountered: