-
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
Empty or blank required UUID header validation results in 200 response status #23939
Comments
This issue also inspired #23940. |
If I pass the header value "foobar", the following exception is thrown : org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type 'java.lang.String' to required type 'java.util.UUID'; nested exception is java.lang.IllegalArgumentException: Invalid UUID string: foobar I think the behavior should be the same for an empty/blank string. |
OK. We'll see if that's feasible. |
The Wouldn't changing it for just |
@mdeinum, those are very valid points, which I have considered as well. I'm not sure that it makes sense to change the behavior for only In light of that, we'll discuss amongst the team what (if anything) we want to do in this regard. |
see pr#23950 |
Team Decision: We are considering whether we want to make a change to However, we are not willing to make such a change in a |
I thought I could solve this with |
@DavidZemon actually your question is related to another issue: #11041 (and also this one : #16519) |
Hi everyone, |
@yagyank, thanks for volunteering! This issue is currently labeled with In light of that, this issue does not fall into the category of ideal-for-contribution. Unfortunately, we don't currently have any open issues labeled as |
Hi @maxdewil, https://github.com/armandoalmeida/request-header-required-non-null I hope it helps you! |
The team discussed this issue. We've come to the conclusion that the We don't think that the behavior of the "required" attribute on We first need to review other the existing converter implementations and reconsider this issue after. |
Affects: Spring MVC 5.1.9.RELEASE
Hi,
My REST API takes as input a mandatory
X-Request-ID
header that is transformed to aUUID
object.So my REST controller method has this parameter:
@RequestHeader(value="X-Request-ID", required=true) UUID xRequestID
However, if the
X-Request-ID
HTTP header:"foobar"
) : 400 Bad Request (OK)It seems that the problem comes from:
StringToUUIDConverter
returnsnull
StringToUUIDConverter
fails, then Spring MVC defaults toUUIDEditor
that returnsnull
.The text was updated successfully, but these errors were encountered: