場景:
#上傳檔案功能報錯,然後排查日誌。
報錯日誌:
The temporary upload location [/tmp/tomcat.7957874575370093230.8088/work/Tomcat/localhost/ROOT] is not valid
在linux系統中,springboot應用程式服務再啟動(java -jar 指令啟動服務)的時候,會在作業系統的/tmp目錄下產生一個tomcat*的文件目錄,上傳的檔案先要轉換成臨時檔案保存在這個資料夾下面。
由於臨時/tmp目錄下的文件,在長時間(10天)沒有使用的情況下,就會被系統機制自動刪除掉。所以如果系統長時間沒有使用到臨時資料夾,就可能導致上面這個問題。
1.建立臨時資料夾:
mkdir -p /tmp/tomcat.7957874575370093230.8088/work/Tomcat/localhost/ROOT
後面可能還會出現這種情況
2.application.properties重新配置一個檔案目錄,然後重啟項目
# 存放Tomcat的日志、Dump等文件的临时文件夹,默认为系统的tmp文件夹 server.tomcat.basedir=/data/apps/temp
3.配置類別配置臨時檔案儲存目錄
@Bean MultipartConfigElement multipartConfigElement() { MultipartConfigFactory factory = new MultipartConfigFactory(); factory.setLocation(tmepPath); return factory.createMultipartConfig(); }
######################專案在線上執行了一段時間後,上傳檔案時拋出以下異常:#########The temporary upload location [/tmp/tomcat.*.80/work/Tomcat/localhost/ROOT] is not valid #########經過查找,採用瞭如下的解決方式【修改臨時檔案的位置】######在application.yml 檔案中新增###
location: tempDir: /opt/location/tempDir #此处为*unix的系统相关位置###專案中新增設定類###
@Configuration public class MultipartConfig { @Value("${location.tempDir:/opt/tempDir}") private String tempDir; @Bean MultipartConfigElement multipartConfigElement() { MultipartConfigFactory factory = new MultipartConfigFactory(); File tmpDirFile = new File(tempDir); // 判断文件夹是否存在 if (!tmpDirFile.exists()) { tmpDirFile.mkdirs(); } factory.setLocation(tempDir); return factory.createMultipartConfig(); } }
以上是springboot怎麼配置暫存檔案目錄的詳細內容。更多資訊請關注PHP中文網其他相關文章!