springboot 使用靜態檔案

2021-08-21 06:14:33 字數 397 閱讀 7114

一、新增乙個jar包

compile group: 'org.springframework.boot', name: 'spring-boot-starter-thymeleaf', version: '2.0.0.release'
二、新增靜態資源檔案

上邊font-awesome資料夾下是我要加的靜態資源,該資料夾要放到static資料夾下

三、訪問路徑

http://ip:埠/font-awesome/資源

舉例 :http:// *.*.*.*:8080 /font-awesome/fontawesome-webfont.svg

Springboot靜態資源使用說明

目錄點睛 關鍵原始碼 訪問webjar中的靜態資源 1 在springboot,我們可以使用以下方式處理靜態資源 webjars 對映 localhost 8080 webjars public,static,resources 對映 localhost 8080 2 優先順序 resources ...

SpringBoot靜態動態

在src main resources下面有兩個資料夾,static和templates springboot預設 static中放靜態頁面,而templates中放動態頁面 靜態頁面 這裡我們直接在static放乙個hello.html,然後直接輸入http localhost 8080 hell...

spring boot 靜態資源

springboot中,預設的靜態資源路徑有 配置在resourceproperties類中 private static final string classpath resource locations 優先順序 靜態資源路徑 例如 webmvcautoconfiguration自動裝配類中,可...