Springboot中静态文件的引入方式有哪些

Springboot中静态文件的引入方式有哪些

这篇文章给大家分享的是有关Springboot中静态文件的引入方式有哪些的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。

thymeleaf 模式

依赖中引入

<!--渲染静态页面--><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-thymeleaf</artifactId></dependency>

可选配置

如果你有

WebMvcConfigurationSupport 的一些类引用. 你需要放行他们

如果你引用了 springSecurity

你也需要放行他们

thymeleaf 需要通过controller层转向view 层

importorg.springframework.web.bind.annotation.RequestMapping;importorg.springframework.web.bind.annotation.RequestMethod;importorg.springframework.web.bind.annotation.RestController;importorg.springframework.web.servlet.ModelAndView;/***@ClassName:*@Descripton:*@Author:sansy*@Date:2019/5/1610:12*@Version:2.0*/@RestControllerpublicclassIndexController{@RequestMapping(value="/index",method=RequestMethod.GET)publicModelAndViewindex(){System.out.println("/index进入controller控制器");ModelAndViewmav=newModelAndView();mav.setViewName("index");returnmav;}@RequestMapping(value="/home",method=RequestMethod.GET)publicModelAndViewhome(){System.out.println("/home进入controller控制器");ModelAndViewmav=newModelAndView();mav.setViewName("index");returnmav;}@RequestMapping(value="/error",method=RequestMethod.GET)publicModelAndViewerror(){System.out.println("/error进入controller控制器");ModelAndViewmav=newModelAndView();mav.setViewName("index");returnmav;}@RequestMapping(value="/login",method=RequestMethod.GET)publicModelAndViewlogin(){System.out.println("/login进入controller控制器");ModelAndViewmav=newModelAndView();mav.setViewName("index");returnmav;}@RequestMapping(value="/",method=RequestMethod.GET)publicModelAndViewindexs(){System.out.println("/进入controller控制器");ModelAndViewmav=newModelAndView();mav.setViewName("index");returnmav;}@RequestMapping(value="/404",method=RequestMethod.GET)publicModelAndViewerror404(){System.out.println("/404进入controller控制器");ModelAndViewmav=newModelAndView();mav.setViewName("index");returnmav;}}

yml 做如下配置

构架这样构架

非thymeleaf 模式

首先去掉依赖

删除controller的指向view层

如果你想带控制器也是可以的 (带的话 指向index. 不带的话 默认指向index .可以理解成一个绝对路径,一个相对路径)

yml文件中这样配置

是为了能够直接访问 根目录下的text文件

构架如下

完成.

感谢各位的阅读!关于“Springboot中静态文件的引入方式有哪些”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!

发布于 2022-03-18 22:49:55
收藏
分享
海报
0 条评论
28
上一篇:springboot访问静态资源会遇到什么问题 下一篇:JavaScript正则表达式中g标志实例分析
目录

    0 条评论

    本站已关闭游客评论,请登录或者注册后再评论吧~

    忘记密码?

    图形验证码