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

溫馨提示×

溫馨提示×

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

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

SpringBoot跳轉到靜態html頁面&&靜態文件放置位置

發布時間:2020-05-06 13:05:19 來源:網絡 閱讀:1553 作者:Qiu_CJ 欄目:web開發

SpringBoot跳轉到靜態html頁面&&靜態文件放置位置

一、SpringBoot跳轉到靜態html頁面

1、在pom.xml中添加spring-boot-starter-thymeleaf。

<dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>

2、在templates下建立a.html文件,新建qiu文件夾,并且在qiu文件夾中創建b.html

SpringBoot跳轉到靜態html頁面&&靜態文件放置位置

a.html內容如下:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
    <h2>AAaaAA</h2>
</body>
</html>

b.html文件內容如下:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<h2>BBbbBB</h2>
</body>
</html>

3、在controller中寫一個返回該頁面的controller【此時不能使用@RestController,否則會返回字符串】

package com.sic.equipment.controller;

import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
@EnableAutoConfiguration
@RequestMapping("/a")
public class TestController {
    @RequestMapping("/2")
    public String aa(){
        return "a";
    }

    @RequestMapping("/3")
    public String ab(){
        return "qiu/b";
    }
}

4、瀏覽器中分別訪問訪問:http://127.0.0.1:502/1/2 和 http://127.0.0.1:502/1/3

SpringBoot跳轉到靜態html頁面&&靜態文件放置位置

SpringBoot跳轉到靜態html頁面&&靜態文件放置位置

二、靜態文件放置位置

1、靜態文件放置為,index.html放置在templates中,其他的如js文件夾、css文件夾、image文件夾等放在static目錄下

SpringBoot跳轉到靜態html頁面&&靜態文件放置位置

2、html文件中的路徑修改
使用類似絕對路徑的形式,如:/image/1.png,不能寫成../static/image/1.png

SpringBoot跳轉到靜態html頁面&&靜態文件放置位置

向AI問一下細節

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

AI

石柱| 泗洪县| 沈丘县| 西安市| 玛曲县| 曲阜市| 页游| 吉隆县| 山东| 新津县| 连城县| 庆元县| 德令哈市| 肃宁县| 沙田区| 嘉禾县| 北票市| 邛崃市| 民勤县| 无锡市| 得荣县| 南郑县| 兰考县| 平罗县| 万全县| 广饶县| 蒙自县| 万源市| 黑山县| 新乡市| 和静县| 宿松县| 克山县| 调兵山市| 五河县| 嘉定区| 麻城市| 北川| 石柱| 永顺县| 翼城县|