Handling Multipart request that is not an Action request?
I've been thinking if it is possible to handle Multipart request that is not an Action request. There is a reason why it seems impossible to me : Only ActionRequest implements getFile() kind of methods. I can't find any easy way how to get the file out of request other than Action request What if I don't use a html form to upload a file and I don't want a view to be rendered after action request - render phase happens always after the action phase. What if I want to create a post request (with file(s)) by ajax and use @ResourceMapping handler. How do I get it out of ResourceRequest ? Thank you