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

溫馨提示×

溫馨提示×

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

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

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

嘉义市| 岑溪市| 鄯善县| 金平| 河间市| 十堰市| 遂溪县| 宁武县| 陈巴尔虎旗| 渑池县| 光泽县| 行唐县| 黎平县| 喜德县| 庆元县| 南皮县| 沂源县| 澄城县| 常州市| 大埔县| 万全县| 阳江市| 松潘县| 奉贤区| 靖安县| 宾阳县| 南江县| 墨竹工卡县| 启东市| 武强县| 彭阳县| 泾川县| 改则县| 思茅市| 新密市| 修武县| 突泉县| 泾源县| 大新县| 郎溪县| 东乌|