-
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
Null passed in required @RequestParam
now fails
#26088
Comments
This is a consequence of #23939. We've tightened our rules for what Could you simply declare your parameter as |
Thanks for quick answer. It is ok for our small project - replace all parameters, that could be nullable, to Optional<?>. I've created this task because dont found any "migration guide" about this moment. For larger projects this "feature" can be more paintful. Best regards |
Is better to create some way to toggle this behavior. Best regards |
There is an item for the UUID issue in #23939 in the migration notes. I think the broader tightening is worth mentioning more explicitly as well. We could also update the reference docs, for example the section on type conversion for method arguments, and/or subsequent sections on specific arguments like |
I'm turning this into a documentation improvement. |
@RequestParam
now fails
I've added a paragraph to the Type Conversion section and also made the migration note a bit more general. |
Wow, this is a massive change - spent some hours searching and debugging until I landed here...
That would be really nice. We have a large code base, that would be quite some work otherwise. |
@drahkrub I'm sorry for the experience. I have improved the description in the upgrade notes so it's easier to find if you search for query parameter or Can you provide a little more context perhaps? I imagine an argument of some type other than String, which has to be converted to |
@rstoyanchev Thanks for your answer! We are in a long process of moving a quite old and large productive system from Spring 4.3.x to Spring Boot - and last week we jumped from Spring Boot 2.3.x to 2.4.x, not studying the upgrade notes of Spring 5.3 (our fault ;-)).
I grepped through our source code and found about 200 usages of @RequestParam like that (with the default
Yes, that would be possible and I understand your arguments, but
The old(er) parts of our system still work with JSPs and contain lots of CRUD-Controllers working that way, e.g. (simplified)
Here "book" is some identifier which must always be provided and is converted in a book entity. Only if a new book is created "book" may exceptionally be given as an empty string. This way, the JSP providing the view (and the identifier of the book when the form is posted back to the controller) can easily handle the different cases new book / existing book. And if the URL
have completely different semantics since the URL above can now be called without any exception if the parameter "book" is not given at all. Apart from that this feels quite strange in the cases 2 and 3 as the parameter "book" is stated there as required (per default). EDIT: The |
@rstoyanchev @jhoeller Does it make sense to open a new issue due to my "concerns"? |
Thanks for the extra context. I sympathize with the effort part, especially since it was possible to accumulate such debt given the previous behavior, but at some point the adjustment had to be made and those 200+ cases you have are currently exposed to The possibility of As for |
@rstoyanchev Thanks again for your answer! I will try to be brief:
That's absolutely true, but
It ensures the awareness of the frontend that a parameter must be provided.
Thanks to Java 8 this can be laveraged by the usage of
See my last two comments.
Ok, I have expressed myself unclear:
I agree.
As I said, I don't reject them - the opposite is true! But your last statement is presumably the core of our "disagreement": For me And apart from being a breaking change I really think it would have been better to stick with the pre-5.3 behaviour
(I just re-read my text and noticed some repetitions - but perhaps these make my point more clear) |
Hello, me again. I did some tests and I have to admit that the behavior is not as I would like it to be in 5.2.x either:
To summarize: What I would prefer with
And with
The actual behaviour in (B) and (C) feels strange to me, but I can live with that much better than with the Thanks for your patience. ;-) |
One last argument against the new behaviour (A) in 5.3: Let's say a a request parameter named "bookId" must be provided (so using
or
Now, right before calling the URL with some And in this case also the usage of (in Spring 5.2.x it's easy since you get EDIT: In this sense the change in 5.3 makes e.g. Spring Datas |
@drahkrub we do make changes from time to time. Backwards compatibility is a high priority but minor and major releases are opportunities to refine behavior, sometimes through breaking changes.
Doesn't a 400 error ensure that better? By absorbing the lack of a value, as you do currently, you are making it OK for the client to not provide it. Moreover you are exposed to clients with potentially malicious intent submitting an empty parameter to get past the 400 and cause other issues where a As for all the cases you laid out, I still think the most intuitive interpretation of |
@rstoyanchev :-) Ok, regarding the handling of However, I would appreciate a brief assessment of my last comment (the one with a non blank String parameter, which eventually get's converted to null, making "Spring Datas |
For the That said if this is on an application controller, you could declare it as optional or nullable, and handle the null inside the controller by returning a status that indicates a missing resource or bad input. Another alternative would be to apply an |
@rstoyanchev :-) That point goes to you if you talk about calling But what about
Checking the raw request (think of Wouldn't it be possible/better to handle this in AbstractNamedValueMethodArgumentResolver, something like
(instead of |
Since 5.3.1 version null, passed for required nullable parameter throws Exception "is not present"
now, i send request
"/myurl/findTree?parentId="
Expected behavior - parameter
parentId
passed to method asnull
Current behavior - exception within
AbstractNamedValueMethodArgumentResolver
The text was updated successfully, but these errors were encountered: