亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

Springboot中靜態文件的引入方式有哪些

發布時間:2022-03-18 13:36:01 來源:億速云 閱讀:179 作者:小新 欄目:開發技術

這篇文章給大家分享的是有關Springboot中靜態文件的引入方式有哪些的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

thymeleaf 模式

依賴中引入

<!-- 渲染靜態頁面 -->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>

可選配置

如果你有

WebMvcConfigurationSupport 的一些類引用. 你需要放行他們

Springboot中靜態文件的引入方式有哪些

如果你引用了 springSecurity

你也需要放行他們

Springboot中靜態文件的引入方式有哪些

Springboot中靜態文件的引入方式有哪些

thymeleaf 需要通過controller層轉向view 層  

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.servlet.ModelAndView;
/**
 * @ClassName:
 * @Descripton:
 * @Author: sansy
 * @Date: 2019/5/16 10:12
 * @Version: 2.0
 */
@RestController
public class IndexController {
    @RequestMapping(value = "/index", method = RequestMethod.GET)
    public ModelAndView index() {
        System.out.println("/index進入controller控制器");
        ModelAndView mav = new ModelAndView();
        mav.setViewName("index");
        return mav;
    }
    @RequestMapping(value = "/home", method = RequestMethod.GET)
    public ModelAndView home() {
        System.out.println("/home進入controller控制器");
        ModelAndView mav = new ModelAndView();
        mav.setViewName("index");
        return mav;
    }
    @RequestMapping(value = "/error", method = RequestMethod.GET)
    public ModelAndView error() {
        System.out.println("/error進入controller控制器");
        ModelAndView mav = new ModelAndView();
        mav.setViewName("index");
        return mav;
    }
    @RequestMapping(value = "/login", method = RequestMethod.GET)
    public ModelAndView login() {
        System.out.println("/login進入controller控制器");
        ModelAndView mav = new ModelAndView();
        mav.setViewName("index");
        return mav;
    }
    @RequestMapping(value = "/", method = RequestMethod.GET)
    public ModelAndView indexs() {
        System.out.println("/ 進入controller控制器");
        ModelAndView mav = new ModelAndView();
        mav.setViewName("index");
        return mav;
    }
    @RequestMapping(value = "/404", method = RequestMethod.GET)
    public ModelAndView error404() {
        System.out.println("/404 進入controller控制器");
        ModelAndView mav = new ModelAndView();
        mav.setViewName("index");
        return mav;
    }
}

yml 做如下配置

Springboot中靜態文件的引入方式有哪些

構架這樣構架

Springboot中靜態文件的引入方式有哪些

Springboot中靜態文件的引入方式有哪些

非thymeleaf 模式

首先去掉依賴

Springboot中靜態文件的引入方式有哪些

刪除controller的指向view層

如果你想帶控制器也是可以的   (帶的話 指向index. 不帶的話 默認指向index .可以理解成一個絕對路徑,一個相對路徑)

Springboot中靜態文件的引入方式有哪些

yml文件中這樣配置 

是為了能夠直接訪問 根目錄下的text文件 

Springboot中靜態文件的引入方式有哪些

構架如下

Springboot中靜態文件的引入方式有哪些

Springboot中靜態文件的引入方式有哪些

完成.

Springboot中靜態文件的引入方式有哪些

感謝各位的閱讀!關于“Springboot中靜態文件的引入方式有哪些”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

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

AI

平遥县| 荔波县| 城固县| 饶河县| 尉氏县| 榕江县| 开平市| 松滋市| 房山区| 城固县| 常州市| 尉犁县| 海安县| 龙里县| 顺昌县| 广灵县| 泰宁县| 白玉县| 军事| 邵东县| 千阳县| 昌邑市| 葵青区| 岢岚县| 虹口区| 黑龙江省| 应城市| 平乐县| 仁寿县| 芒康县| 班戈县| 宜黄县| 公主岭市| 阿鲁科尔沁旗| 龙川县| 湖口县| 崇文区| 平罗县| 株洲县| 岳普湖县| 鄯善县|