溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

springboot文件的虛擬路徑映射方式

發(fā)布時(shí)間:2021-08-20 13:42:28 來(lái)源:億速云 閱讀:251 作者:chen 欄目:開(kāi)發(fā)技術(shù)

本篇內(nèi)容主要講解“springboot文件的虛擬路徑映射方式”,感興趣的朋友不妨來(lái)看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來(lái)帶大家學(xué)習(xí)“springboot文件的虛擬路徑映射方式”吧!

目錄
  • springboot文件虛擬路徑映射

    • 在application.properties配置文件中配置

  • springboot 配置文件虛擬路徑 供外部訪問(wèn)

    • 第一步:配置application.yml

    • 第二步:添加 Configuration 文件

      • 重啟

springboot文件虛擬路徑映射

在application.properties配置文件中配置

spring.http.multipart.location= D:/
spring.mvc.static-path-pattern=/**
spring.resources.static-locations=  classpath:/,  file:${spring.http.multipart.location}

表示:讀取文件時(shí)從我們的磁盤(pán)D中讀取文件,例如:我們數(shù)據(jù)庫(kù)中存取的文件路徑為:

/2018/06/21//danPicture/cefb656f8cf542968107ca51e15c4ee5-1529540867019.png

那么在頁(yè)面中展示的圖片的路徑實(shí)際上是我們本機(jī)電腦的路徑:

D:/2018/06/21//danPicture/cefb656f8cf542968107ca51e15c4ee5-1529540867019.png

就是說(shuō)會(huì)自動(dòng)幫我們做一個(gè)拼接的操作?。。。?/p>

springboot 配置文件虛擬路徑 供外部訪問(wèn)

配置虛擬路徑 供外部訪問(wèn)圖片 視頻等文件

第一步:配置application.yml

spring:
mvc:
  static-path-pattern: /**
resources:
  static-locations: classpath\:/META-INF/resources/,classpath\:/resources/,classpath\:/static/,classpath\:/public/,file\:F:/wechatProject/upload/

其中 F:/wechatProject/upload/ 為文件絕對(duì)路徑

第二步:添加 Configuration 文件

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 MyWebAppConfiguration extends WebMvcConfigurerAdapter {
    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) {
        /**
         * @Description: 對(duì)文件的路徑進(jìn)行配置, 創(chuàng)建一個(gè)虛擬路徑/Path/** ,即只要在<img src="/Path/picName.jpg" />便可以直接引用圖片
         *這是圖片的物理路徑  "file:/+本地圖片的地址"
         * @Date: Create in 14:08 2017/12/20
         */
        registry.addResourceHandler("/Path/**").addResourceLocations("file:/F:/wechatProject/upload/");
        super.addResourceHandlers(registry);
    }
}
重啟

如果application.yml 沒(méi)有配置

server:
  servlet:
    context-path: /sell

瀏覽器訪問(wèn) http://localhost:8080/Path/11.html

到此,相信大家對(duì)“springboot文件的虛擬路徑映射方式”有了更深的了解,不妨來(lái)實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI