溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

解決Spring Boot應(yīng)用上傳文件時報(bào)錯“spring.servlet.multipart.location”的方法

發(fā)布時間:2020-11-11 17:34:19 來源:億速云 閱讀:5853 作者:Leah 欄目:編程語言

解決Spring Boot應(yīng)用上傳文件時報(bào)錯“spring.servlet.multipart.location”的方法?相信很多沒有經(jīng)驗(yàn)的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。

解決辦法

(1)通過Spring Boot的配置參數(shù)“spring.servlet.multipart.location”明確指定上傳文件的臨時目錄,確保該路徑已經(jīng)存在,而且該目錄不會被操作系統(tǒng)清除。

spring.servlet.multipart.location=/data/tmp

將上傳文件的臨時目錄指定到路徑“/data/tmp”下。

實(shí)際上,在Spring Boot中關(guān)于上傳文件的所有配置參數(shù)如下所示:

# MULTIPART (MultipartProperties)
spring.servlet.multipart.enabled=true # Whether to enable support of multipart uploads.
spring.servlet.multipart.file-size-threshold=0B # Threshold after which files are written to disk.
spring.servlet.multipart.location= # Intermediate location of uploaded files.
spring.servlet.multipart.max-file-size=1MB # Max file size.
spring.servlet.multipart.max-request-size=10MB # Max request size.
spring.servlet.multipart.resolve-lazily=false # Whether to resolve the multipart request lazily at the time of file or parameter access.

(2)在Spring容器中明確注冊MultipartConfigElement對象,通過MultipartConfigFactory指定一個路徑。
在上述源碼追蹤中就發(fā)現(xiàn),Tomcat會使用MultipartConfigElement對象的location屬性作為上傳文件的臨時目錄。

    /**
 * 配置上傳文件臨時目錄
 * @return
 */@Beanpublic MultipartConfigElement multipartConfigElement() {
         MultipartConfigFactory factory = new MultipartConfigFactory();    // tmp.dir參數(shù)在啟動腳本中設(shè)置
         String path = System.getProperty("tmp.dir");    if(path == null || "".equals(path.trim())) {
            path = System.getProperty("user.dir");
    }
        String location = path + "/tmp";
        File tmpFile = new File(location);    // 如果臨時目錄不存在則創(chuàng)建
                  if (!tmpFile.exists()) {
                       tmpFile.mkdirs();
    }    // 明確指定上傳文件的臨時目錄
    factory.setLocation(location);    return factory.createMultipartConfig();
}

看完上述內(nèi)容,你們掌握解決Spring Boot應(yīng)用上傳文件時報(bào)錯“spring.servlet.multipart.location”的方法的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI