-
Notifications
You must be signed in to change notification settings - Fork 687
Determine if we should re-instate proxying of MultipartFile method params #3299
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
Comments
Resolver resolution processThe When the Note The purpose of the
So... our Proxy resolver timelinePrior to spring-data-commons 3.3.4, the "supports" method of the proxy resolver did the following: Lines 90 to 97 in 5bb0c4a
In 3.3.4 it was updated as follows: Lines 92 to 100 in 0b53d93
Note Because it was not possible to annotate a method param w/ However, after the change made in latter code snippet above (3.3.4) the proxy resolver started saying "Yep, I can handle a multipart file method param if it is annotated with SuggestionI suggest we leave this fix as-is based on the following:
If users want multipart file projection support they can create a feature request. |
cc: @mp911de |
I fully agree with that sentiment. Let's close this ticket and put it aside for the time being. |
In #3258 we removed the ability to proxy (for projection) method params of type
MultipartFile
. The purpose of this issue is to dig in deeper on that decision and decide if we should support this.The text was updated successfully, but these errors were encountered: