java - Difference between maxUploadsize and maxInMemorySize -
what difference betweenn maxuploadsize , maxinmemorysize in commonsmultipartresolver
maxuploadsize: maximum upload size single request. means total size of upload files cannot exceed configured maximum. default unlimited (value of -1). can set maxuploadsize , value property.
maxinmemorysize: files size below value stored in memory, otherwise stored in disk directly. default 10kb (10240 bytes). or can customize maxinmemorysize , value property .
Comments
Post a Comment