中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何配置SpringBoot靜態資源路徑

發布時間:2020-07-30 11:29:24 來源:億速云 閱讀:137 作者:小豬 欄目:編程語言

小編這次要給大家分享的是如何配置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靜態資源路徑的文章,如果覺得文章內容寫得不錯的話,可以把它分享出去給更多人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

临沭县| 静海县| 乐东| 开江县| 通河县| 鸡西市| 剑河县| 甘孜县| 德令哈市| 延安市| 治多县| 台北县| 黄龙县| 新兴县| 临泉县| 肇东市| 汽车| 平安县| 綦江县| 蓬莱市| 永宁县| 鹰潭市| 拜泉县| 泸定县| 宕昌县| 阿合奇县| 长丰县| 礼泉县| 介休市| 惠安县| 澄城县| 玛多县| 凉山| 墨竹工卡县| 德令哈市| 突泉县| 吴江市| 金山区| 新疆| 和林格尔县| 仙游县|