本篇文章為大家展示了SpringBoot中靜態資源訪問配置以及內置tomcat虛擬文件映射路徑是怎樣的,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
成都創新互聯主營泰山網站建設的網絡公司,主營網站建設方案,成都app開發,泰山h5微信小程序開發搭建,泰山網站營銷推廣歡迎泰山等地區企業咨詢
@Configuration @EnableWebMvc public class StaticResourceConfig implements WebMvcConfigurer { @Override public void addResourceHandlers(ResourceHandlerRegistry registry) { registry.addResourceHandler("/static/**").addResourceLocations("classpath:/static/"); } }
@Configuration public class WebMvcConfig extends WebMvcConfigurerAdapter { @Override public void addResourceHandlers(ResourceHandlerRegistry registry) { registry.addResourceHandler("/image/**").addResourceLocations("file:C:/image/"); } }
把文件獨立出來放到其他盤符,比如我的服務在 /server
文件放到 /data
中
通常情況下放到對應項目的 webapps
下的文件才能正常訪問,現在我需要訪問E盤中的內容,這時候我就需要 自定義靜態資源映射
實現類繼承 WebMvcConfigurerAdapter
并重寫方法 addResourceHandlers
,代碼如下
import org.springframework.beans.factory.annotation.Value; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter; @Configuration public class FileServerConfig extends WebMvcConfigurerAdapter { @Value("${local.fileserver.dir}") private String localFileServerDir; @Value("${local.fileserver.path}") private String localFileServerPath; //訪問圖片方法 @Override public void addResourceHandlers(ResourceHandlerRegistry registry) { registry.addResourceHandler("/" + this.getLocalFileServerPath() + "/**").addResourceLocations("file:" + this.getLocalFileServerDir() + "/"); // 本地文件夾要以"flie:" 開頭,文件夾要以"/" 結束,example: //registry.addResourceHandler("/abc/**").addResourceLocations("file:D:/pdf/"); super.addResourceHandlers(registry); } /** * 文件實際路徑轉為服務器url路徑 * @param absolutePath * @return */ public String toServerPath(String absolutePath) { absolutePath = absolutePath.replaceAll("\\\\", "/"); return "/" + absolutePath.replace(localFileServerDir, localFileServerPath); } public String getLocalFileServerDir() { return localFileServerDir; } public void setLocalFileServerDir(String localFileServerDir) { this.localFileServerDir = localFileServerDir; } public String getLocalFileServerPath() { return localFileServerPath; } public void setLocalFileServerPath(String localFileServerPath) { this.localFileServerPath = localFileServerPath; } }
注意:本地文件夾要以"flie:" 開頭,文件夾要以"/" 結束,example:
registry.addResourceHandler("/pdf/**").addResourceLocations("file:D:/pdf/");
意思是你的服務器路徑 serverdata
對應你本地的 /data
目錄這時你的,假如要訪問 /data/test.jpg
圖片,對應的服務器路徑為 http://localhost:serverdata/test.jpg
上述內容就是SpringBoot中靜態資源訪問配置以及內置tomcat虛擬文件映射路徑是怎樣的,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注創新互聯行業資訊頻道。
網頁標題:SpringBoot中靜態資源訪問配置以及內置tomcat虛擬文件映射路徑是怎樣的
新聞來源:http://vcdvsql.cn/article44/pcdeee.html
成都網站建設公司_創新互聯,為您提供品牌網站制作、自適應網站、小程序開發、搜索引擎優化、App設計、移動網站建設
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯