我在春季啓動應用程序工作。我試圖用spring來提供靜態內容。 想爲存儲在/ C的資源:每當一個請求進來的URL /前端/文件/目錄匹配模式:/文件/ **:春季引導服務靜態資源
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
registry
.addResourceHandler("/file/**")
.addResourceLocations("file:///C:/frontend/files/");
}
,但是當我嘗試進入這種資源使用這個網址:http://localhost:9999/file/app.min.js
我有這個問題
There was an unexpected error (type=Not Acceptable, status=406).
Could not find acceptable representation
您可以爲請求和響應添加curl請求+標頭嗎? – fateddy