国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

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

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

瀏覽:4日期: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
相關文章:
主站蜘蛛池模板: 京山县| 云南省| 云林县| 马关县| 仙居县| 贡觉县| 太原市| 隆子县| 巴里| 九江县| 宾阳县| 上饶市| 炎陵县| 内黄县| 定安县| 古田县| 灌南县| 辉县市| 蒙山县| 永年县| 年辖:市辖区| 延寿县| 墨竹工卡县| 应城市| 施甸县| 临朐县| 龙岩市| 万安县| 黎川县| 普定县| 前郭尔| 维西| 德兴市| 兴国县| 清苑县| 宣武区| 怀柔区| 浮梁县| 夏河县| 胶州市| 南涧|