真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

SpringBoot跳轉(zhuǎn)到靜態(tài)html頁面&&靜態(tài)文件放置位置

SpringBoot跳轉(zhuǎn)到靜態(tài)html頁面&&靜態(tài)文件放置位置

一、SpringBoot跳轉(zhuǎn)到靜態(tài)html頁面

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


   org.springframework.boot
   spring-boot-starter-thymeleaf

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

SpringBoot跳轉(zhuǎn)到靜態(tài)html頁面&&靜態(tài)文件放置位置

10年的齊河網(wǎng)站建設(shè)經(jīng)驗,針對設(shè)計、前端、開發(fā)、售后、文案、推廣等六對一服務(wù),響應(yīng)快,48小時及時工作處理。網(wǎng)絡(luò)營銷推廣的優(yōu)勢是能夠根據(jù)用戶設(shè)備顯示端的尺寸不同,自動調(diào)整齊河建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調(diào)整網(wǎng)站的寬度,無論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設(shè)計,從而大程度地提升瀏覽體驗。創(chuàng)新互聯(lián)從事“齊河網(wǎng)站設(shè)計”,“齊河網(wǎng)站推廣”以來,每個客戶項目都認真落實執(zhí)行。

a.html內(nèi)容如下:




    
    Title


    

AAaaAA

b.html文件內(nèi)容如下:




    
    Title


BBbbBB

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跳轉(zhuǎn)到靜態(tài)html頁面&&靜態(tài)文件放置位置

SpringBoot跳轉(zhuǎn)到靜態(tài)html頁面&&靜態(tài)文件放置位置

二、靜態(tài)文件放置位置

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

SpringBoot跳轉(zhuǎn)到靜態(tài)html頁面&&靜態(tài)文件放置位置

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

SpringBoot跳轉(zhuǎn)到靜態(tài)html頁面&&靜態(tài)文件放置位置


分享名稱:SpringBoot跳轉(zhuǎn)到靜態(tài)html頁面&&靜態(tài)文件放置位置
網(wǎng)址分享:http://weahome.cn/article/jopiig.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部