springBoot项目中的static和templates文件夹

Posted 刚刚睡醒

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springBoot项目中的static和templates文件夹相关的知识,希望对你有一定的参考价值。

 

记录是为了更好的成长!

1、static文件中的页面

//这样写不能访问static中index文件夹下的index.html页面    
@RequestMapping("index")
    public String hello() {
        return "/index/index";
    }
//这样写才能访问到
@RequestMapping("index")
    public String hello() {
        return "/index/index.html";
    }

 

 2、templates文件夹中的页面

 

 

 

 

3、springBoot项目中Controller层的页面重定向问题

    @RequestMapping("index")
    public String hello() {
        return "/index/index.html";
    }
    
   //请求test会重定向到index     
    @RequestMapping("test")
    public String test() {
        return "redirect:/index";
    }      

 

 

 

 

 

 

 

 

 

 

以上内容代表个人观点,仅供参考,不喜勿喷。。。

以上是关于springBoot项目中的static和templates文件夹的主要内容,如果未能解决你的问题,请参考以下文章

springboot项目的重定向和转发

获取springboot项目static目录的静态资源

springboot templates目录下的页面文件访问不到 static 目录下的 jq 文件

SpringBoot 访问不到static文件夹下的静态资源

【Springboot】项目模块化

java使用单例与使用static方法的对于和个人理解