-
Notifications
You must be signed in to change notification settings - Fork 47
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
how to support file upload?it occurs Exception because DefaultJerseyHandler#shouldReadData return false if Content-Type is multipart/form-data #77
Comments
and more, I want to ask that why DefaultJerseyHandler#shouldReadData does not support multipart/form-data? |
This was trying to stay closer to standard vert.x behavior. When you have a stream you should use a data pump or something similar to work with smaller chunks of data as they arrive rather than reading everything into memory. You can inject the vert.x |
thanks very much, every framework has its own features. |
it occurs another exception when i use uploadHandler method.
|
DefaultJerseyHandler#shouldReadData will return false if Content-Type is multipart/form-data which leads to the Exception below:
The text was updated successfully, but these errors were encountered: