I have an application in which file uploads are pretty common, but now we have a new scenario behind a proxy we can't control.
The proxy has a max-packet-size of 5 MB, meaning that we can only upload at most 5MB per request; and that breaks our usual 10-250 MB normal uploads.
Is there a standard Java-based (or Spring) way to upload files on configurable chunks/parts?
Note: From the client side (web) we planned to use jQuery-File-Upload