Will Spring hold contents in memory or stores in the disk?

牧云@^-^@ 提交于 2019-12-09 09:03:48

问题


When a file say 100 MB size is uploaded from browser will Spring hold whole data in memory or stores in the disk temporarily. After going through Spring doc I know how to set a temp dir but I want to know what will happen if I don't mention that.

Am having following declaration :

<bean id="multipartResolver"
class="org.springframework.web.multipart.commons.CommonsMultipartResolver"/>

Bean :

public class FileHolder {

    private MultipartFile file;

    public void setFile(MultipartFile file) {
        this.file = file;
    }

    public MultipartFile getFile() {
        return file;
    }
}

Will the "file" object in the above bean hold that 100 MB data ?


回答1:


A bit more digging in the javadoc shows that the default maximum in-memory size is 10240 bytes. From that I'd assume that any upload less than 10kB is held in memory, anything larger will be stored on disk. If you don't specify the disk location, it'll likely use a default (I'd guess it'll use the system default tmp directory).




回答2:


If you don't set the temp directory CommonsMultipartResolver will save temporary files to the servlet container's temporary directory.

The "file" object in your example doesn't hold the data it similar to a java.io.File reference. You need to get the data with file.getBytes().




回答3:


Yes, but if it's stored on disk it will be deleted after the request has been processed. You can set the threshold for when it will be stored on disk:

In your multipartresolver bean definition, e.g.:

<property name="maxUploadSize" value="1000000" /> 
<property name="maxInMemorySize" value="1000" /> 

If it's held in memory, you could store it in the session and process it in the next request, for instance, such as if you're waiting for a user confirmation.




回答4:


In spring boot, spring.servlet.multipart.file-size-threshold specifies the size threshold after which files will be written to disk.

The default value of the property is zero. It means by default, it stores all files in a temporary location (can be configured via spring.servlet.multipart.location).

Link: spring boot properties

Be aware of some bugs on the implementations here: https://github.com/spring-projects/spring-boot/issues/9073



来源:https://stackoverflow.com/questions/1952633/will-spring-hold-contents-in-memory-or-stores-in-the-disk

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!