热门标签 | HotTags
当前位置:  开发笔记 > 前端 > 正文

深入浅析springboot中static和templates区别

这篇文章主要介绍了springboot中static和templates区别,本文通过图文实例代码相结合给大家介绍的非常详细,具有一定的参考借鉴价值,需要的朋友可以参考下

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

1.1 在static下新建hello1.html

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

在这里插入图片描述

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

在这里插入图片描述

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

在这里插入图片描述

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

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

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

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

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

在这里插入图片描述

3.结束语

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

4.总结:

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

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


推荐阅读
author-avatar
荆州房产网
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有