SpringBoot 路徑對映

2021-10-03 04:24:49 字數 530 閱讀 3076

在spring boot中整合thymeleaf後,我們知道thymeleaf的預設的html的路徑為classpath:/templates也就是resources/templates,那如何訪問這個路徑下面的靜態頁面呢?假設我們要訪問乙個頁面為hello.html。

spring.thymeleaf.prefix=classpath:/templates
1.使用controller中的方法直接返回該頁面

@controller

public class hellocontroller

}

2.實現webmvcconfigure介面中的addviewcontrollers方法進行路徑的對映

@configuration

public class webmvcconfig implements webmvcconfigurer

}

SpringBoot配置虛擬對映路徑

方法一 屬性檔案中配置本地上傳檔案的路徑 prop.upload folder e 2 將本地上傳檔案的路徑加入到靜態資源路徑中即可 spring.resources.static locations classpath meta inf resources classpath resources ...

springboot 對映靜態資源路徑

對映靜態資源路徑 spring.resources.static locations classpath meta inf resources classpath resources classpath static classpath public file f mycode springboot...

SpringBoot配置虛擬路徑對映

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