91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

开江县| 新竹市| 砀山县| 芷江| 易门县| 迭部县| 当雄县| 陆良县| 桂林市| 永济市| 南充市| 繁峙县| 石阡县| 永和县| 米易县| 务川| 西峡县| 虹口区| 梧州市| 乌鲁木齐市| 荔波县| 南涧| 台州市| 塔河县| 江山市| 靖宇县| 威宁| 太白县| 富顺县| 大新县| 微山县| 玉田县| 大洼县| 榆林市| 镶黄旗| 营口市| 龙州县| 东港市| 镇平县| 大厂| 嘉鱼县|