SpringBoot中配置Web静态资源路径的方法
介绍:本文章主要针对web项目中的两个问题进行详细解析介绍:1-页面跳转404,即controller转发无法跳转页面问题;2-静态资源文件路径问题。
项目工具:IntelijIdea,JDK1.8,SpringBoot2.1.3
正文:
准备工作:通过Idea创建一个SpringBoot-web项目,此过程不做赘述,创建完成后项目结构如下图:
1-创建一个controller代码如下:
packagecom.example.webpractice.controller; importorg.springframework.stereotype.Controller; importorg.springframework.web.bind.annotation.RequestMapping; @Controller publicclassDemoController{ @RequestMapping("demo") publicStringdemo(){ System.out.println("进入controller中的demo方法!"); /*注意:这里返回值有后缀名,如何省略后缀名后面有介绍*/ return"myPage.html"; } }
2-在web-practice\src\main\resources\templates\路径下创建html页面,取名“myPage”,代码如下:
Title WelcometomyPage!