spring boot 配置靜態路徑(404出現的坑)

tomj2ee發表於2022-02-14

一  前言

最近有個專案,需要上傳一個zip檔案(zip檔案就是一堆的html壓縮組成)的壓縮檔案,然後後端解壓出來,使用者可以預覽上傳好的檔案。

檢視資料,spring boot對靜態檔案,可以通過配置路徑的方式來實現。

 

@Slf4j
@Configuration
public class WebMvcConfig extends WebMvcConfigurationSupport {

    @Resource
    private PermissionInterceptor permissionInterceptor;

    @Resource
    private CheckOpenInterceptor checkOpenInterceptor;

    @Value("${dataDir}")
    private String rootPath;

    @Override
    protected void addResourceHandlers(ResourceHandlerRegistry registry) {
        log.info(">>addResourceHandlers>>"+"file:"+rootPath);
        registry.addResourceHandler("/file/**").addResourceLocations("file:"+rootPath);

               super.addResourceHandlers(registry);
    }

    @Override
    public void addInterceptors(InterceptorRegistry registry) {
        registry.addInterceptor(permissionInterceptor).addPathPatterns("/file/**");
        super.addInterceptors(registry);
    }

}

 

rootPath 我本地除錯環境的是 : d:/file/

測試環境的是  /data/file

/**” :表示訪問路徑,根據實際情況指定(這裡表示/file/下的所有路徑)

"file:/d/file/" :表示靜態資源在硬碟上的真實儲存位置,根據實際情況指定

 

本地開發是很順利的,很快就寫好了,當部署到測試機的時候,上傳的檔案,無法預覽,一直提示404。

二  漫長的除錯之路

初步懷疑是2個問題

1.許可權問題檢查了檔案也正常寫入和讀出,排除許可權的問題
2檔案編碼的問題

我上傳的有中文目錄,也許是中文無法對映出來,後來,上傳了全英文的檔案,也是無法預覽,實在是吐血了,

都無法解決我的問題

實在是想不到什麼問題,考慮了能否遠端debug下呢

我配置了 ide debug,遠端 java啟動命令

 

java -agentlib:jdwp=transport=dt_socket,address=5555,server=y,suspend=y -jar myproject.jar

 

ide 配置

 

其中 host 是我本地的ip地址

啟動好遠端服務,打好斷點,然後debug

經過幾個小時的spring debug 原始碼,終於發現了我的路徑少了個 / 號, spring boot 對於 不是/結尾的處理,直接忽略了,找到了上級目錄去了,這就造成一直404的原因

 

總結

1.開發容易,除錯難,一定要注意配置要小心點

2.spring boot 要多熟悉下,有問題,也可以debug來解決

 

相關文章