久久r热视频,国产午夜精品一区二区三区视频,亚洲精品自拍偷拍,欧美日韩精品二区

您的位置:首頁技術文章
文章詳情頁

SpringBoot靜態資源路徑配置及主頁顯示

瀏覽:5日期:2023-05-20 11:30:56

靜態資源路徑

靜態資源支持放在以下路徑中,訪問優先級從上到下:

classpath:/META-INF/resources/classpath:/resources/classpath:/static/ # 默認路徑classpath:/public/

其中 classpath 為 src/main/resources 目錄。

請求地址為:http://localhost:8080/xx.js

首頁

文件位置:

classpath:/static/favicon.icoclasspath:/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>

定義請求控制器:

@Controllerpublic 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><h1>首頁</h1><div th:text='${msg}'></div></body></html>

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持好吧啦網。

標簽: Spring
相關文章:
主站蜘蛛池模板: 庄河市| 西畴县| 瓦房店市| 静安区| 库尔勒市| 霍林郭勒市| 霞浦县| 桑植县| 宁德市| 涿州市| 信宜市| 永吉县| 田阳县| 阿巴嘎旗| 赞皇县| 冷水江市| 和顺县| 青州市| 乃东县| 镇安县| 姜堰市| 阳信县| 西昌市| 山丹县| 启东市| 东方市| 十堰市| 岳阳市| 元谋县| 万盛区| 白银市| 叶城县| 江达县| 呼图壁县| 南皮县| 芒康县| 鹤峰县| 根河市| 鸡泽县| 习水县| 秦皇岛市|