SpringBoot配置虛擬對映路徑

2021-09-30 16:44:30 字數 776 閱讀 5920

方法一:

屬性檔案中配置本地上傳檔案的路徑:

prop.upload-folder=e:
2、將本地上傳檔案的路徑加入到靜態資源路徑中即可:

spring.resources.static-locations=classpath:/meta-inf/resources/,classpath:/resources/,\

classpath:/static/,classpath:/public/,file:$

方法二:

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 springbootintercepterconfig extends webmvcconfigureradapter

}

3.位址列中訪問

SpringBoot配置虛擬路徑對映

由於springboot使用的是內建的tomcat,傳統的在server.xml配置的docbase和path已經難以實現。其實springboot有自己的虛擬路徑對映配置方式!編寫乙個webmvcconfig類實現webmvcconfigurer介面 public class webmvcconf...

SpringBoot常用配置

前言 springboot整合了主流的第三方框架,但是需要使用springboot那一套配置方式。但是我這裡只列舉了非常非常常用的,可以看已發的幾篇部落格,慢慢會補充。當然官方文件裡也有相應的配置,可惜沒有注釋。spring.resources.cache period 設定資源的快取時效,以秒為單...

Spring boot自動配置

1 從原始碼角度看spring boot 自動配置 這個方法呼叫的是 initialize sources suppresswarnings private void initialize object sources this.webenvironment deducewebenvironment...