Sory for missing information My tomcat is 8.0 , Debian 7. Tomcat is in front of my app using Grails+Vaadin for interface.
This annotation where will be used in Grails.conf ? ________________________________________ From: Kyohei Nakamura <[email protected]> Sent: Tuesday, January 12, 2016 7:44 AM To: Tomcat Users List Subject: Re: Upload big file for data Hi Edwin First, you don't provide the information about your apps. If you want to get a better answer, you should provide your Tomcat version, configuration and apps infomation. If you use the multipart/form-data in order to uploading a file, you can use the following settings. * web.xml <servlet> <multipart-config> <max-file-size>xxxxx</max-file-size> </multipart-config> </servlet> Or you can use the following annotation. @MultipartConfig(maxFileSize=xxxxx) In addition, when the allowCasualMultipartParsing attribute of the Context element set to true (the default is false), will be able to parse multipart/form-data request bodies. At the time, the max file size is used the value of the maxPostSize attribute of the Connector element. If you use the POST data, you can see the maxPostSize attribute description of the Connector docs. 2016-01-12 0:25 GMT+09:00 Edwin Quijada <[email protected]>: > Hi! > I am newbie using Tomcat and I have a problem uploadind a Big file. I > wanna upload a big file CSV, 140 mb, but when this begins doesnt happen > anything . There is any setting to change for allowing to upload this file. > This file has record will be procesed into my app. > > > Thks in Advance > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
