您好,登錄后才能下訂單哦!
小編這次要給大家分享的是如何配置SpringBoot靜態資源路徑,文章內容豐富,感興趣的小伙伴可以來了解一下,希望大家閱讀完這篇文章之后能夠有所收獲。
靜態資源路徑
靜態資源支持放在以下路徑中,訪問優先級從上到下:
classpath:/META-INF/resources/
classpath:/resources/
classpath:/static/ # 默認路徑
classpath:/public/
其中 classpath 為 src/main/resources 目錄。
請求地址為:http://localhost:8080/xx.js
首頁
文件位置:
classpath:/static/favicon.ico
classpath:/templates/index.html
導入 thymeleaf 模板引擎依賴:
<dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> </dependency> <dependency> <groupId>org.thymeleaf</groupId> <artifactId>thymeleaf-spring5</artifactId> </dependency> <dependency> <groupId>org.thymeleaf.extras</groupId> <artifactId>thymeleaf-extras-java8time</artifactId> </dependency> </dependencies>
定義請求控制器:
@Controller public class IndexController { @RequestMapping({"/", "/index.html"}) public String index(Model model){ model.addAttribute("msg", "Hello, Thymeleaf!"); return "index"; } }
加入模板內容顯示首頁:
<!DOCTYPE html> <html lang="en" xmlns:th="http://www.thymeleaf.org"> <head> <meta charset="UTF-8"> <title>index page</title> </head> <body> <h2>首頁</h2> <div th:text="${msg}"></div> </body> </html>
看完這篇關于如何配置SpringBoot靜態資源路徑的文章,如果覺得文章內容寫得不錯的話,可以把它分享出去給更多人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。