资讯

精准传达 • 有效沟通

从品牌网站建设到网络营销策划,从策略到执行的一站式服务

深入浅析springboot中static和templates区别

静态页面的return默认是跳转到/static/目录下,当在pom.xml中引入了thymeleaf组件,动态跳转会覆盖默认的静态跳转,默认就会跳转到/templates/下,注意看两者return代码也有区别,动态没有html后缀。

创新互联公司-成都网站建设公司,专注网站制作、做网站、网站营销推广,域名与空间,雅安服务器托管绵阳服务器托管有关企业网站制作方案、改版、费用等问题,请联系创新互联公司

1.1 在static下新建hello1.html

运行程序,浏览器输入http://localhost:8080/hello1.html

深入浅析springboot中static和templates区别

so,可以在根目录下访问hello1.html,static目录类似于传统Java web中的webroot或webcontent

1.2 也可以通过接口跳转
1.2.1 添加接口

@RequestMapping("hello1")
public String hello1() {
  return "hello1.html";
}

1.2.2 注释掉thymeleaf依赖


  
    
    
  

1.2.3 浏览器输入http://localhost:8080/hello1

深入浅析springboot中static和templates区别

2.template目录
2.1 在template下新建hello2.html
运行程序,浏览器输入http://localhost:8080/hello2.html

深入浅析springboot中static和templates区别

templates下的动态页面不能直接访问

2.2 通过接口访问
2.2.1 添加接口

注意接口中return的页面不包含.html后缀

@RequestMapping("hello2")
public String hello2() {
  return "hello2";
}

2.2.2 浏览器输入http://localhost:8080/hello2

深入浅析springboot中static和templates区别

3.结束语

静态页面的return默认是跳转到/static/目录下,当在pom.xml中引入了thymeleaf组件,动态跳转会覆盖默认的静态跳转,默认就会跳转到/templates/下,注意看两者return代码也有区别,动态没有html后缀。

4.总结:

改bug需要用心,掉头发是不可避免滴!!!

到此这篇关于深入浅析springboot中static和templates区别的文章就介绍到这了,更多相关springboot static和templates区别内容请搜索创新互联以前的文章或继续浏览下面的相关文章希望大家以后多多支持创新互联!


本文标题:深入浅析springboot中static和templates区别
URL网址:http://www.cdkjz.cn/article/gpjgse.html
多年建站经验

多一份参考,总有益处

联系快上网,免费获得专属《策划方案》及报价

咨询相关问题或预约面谈,可以通过以下方式与我们联系

大客户专线   成都:13518219792   座机:028-86922220