does maxPostSize apply to multipart/form-data file uploads

前端 未结 1 1072
情深已故
情深已故 2021-01-04 11:43

I have a webapp on a Tomcat server that allows files to be uploaded. There is a limit on the size of a file upload, and I\'d like that limit to be enforced preemptively (ie,

相关标签:
1条回答
  • 2021-01-04 11:59

    There is a very informative discussion of this topic here.

    As I understand it, Tomcat only enforces that limit if the content type is application/x-www-form-urlencoded. For multiparts you'll have to read the stream yourself and enforce the limit yourself. A great tool for working with multipart data is Apache FileUpload.

    0 讨论(0)
提交回复
热议问题