溫馨提示×

溫馨提示×

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

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

解決Spring Boot應用上傳文件時報錯“spring.servlet.multipart.location”的方法

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

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

解決辦法

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

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

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

實際上,在Spring Boot中關于上傳文件的所有配置參數如下所示:

# 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ā)現,Tomcat會使用MultipartConfigElement對象的location屬性作為上傳文件的臨時目錄。

    /**
 * 配置上傳文件臨時目錄
 * @return
 */@Beanpublic MultipartConfigElement multipartConfigElement() {
         MultipartConfigFactory factory = new MultipartConfigFactory();    // tmp.dir參數在啟動腳本中設置
         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();
}

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

向AI問一下細節(jié)

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

AI