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

溫馨提示×

溫馨提示×

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

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

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

浪卡子县| 襄城县| 蕉岭县| 江山市| 江陵县| 新余市| 多伦县| 饶阳县| 交口县| 塔城市| 绿春县| 垦利县| 蓬溪县| 镇赉县| 绥中县| 黄龙县| 车险| 克东县| 桃源县| 陆良县| 建昌县| 樟树市| 汶上县| 永胜县| 黔江区| 南丹县| 津市市| 娄底市| 兴山县| 庆安县| 滦南县| 镇安县| 蓬溪县| 锡林郭勒盟| 岳阳县| 巢湖市| 车险| 安阳市| 元氏县| 黑水县| 南涧|