深入浅析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依赖
<dependencies>
<!--<dependency>-->
<!--<groupId>org.springframework.boot</groupId>-->
<!--<artifactId>spring-boot-starter-thymeleaf</artifactId>-->
<!--</dependency>-->
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需要用心,掉头发是不可避免滴!!!
上一篇:Java数据封装树形结构代码实例
栏 目:JAVA代码
下一篇:java实现抖音飞机大作战
本文标题:深入浅析springboot中static和templates区别
本文地址:http://www.codeinn.net/misctech/139779.html


阅读排行
- 1Java Swing组件BoxLayout布局用法示例
- 2java中-jar 与nohup的对比
- 3Java邮件发送程序(可以同时发给多个地址、可以带附件)
- 4Caused by: java.lang.ClassNotFoundException: org.objectweb.asm.Type异常
- 5Java中自定义异常详解及实例代码
- 6深入理解Java中的克隆
- 7java读取excel文件的两种方法
- 8解析SpringSecurity+JWT认证流程实现
- 9spring boot里增加表单验证hibernate-validator并在freemarker模板里显示错误信息(推荐)
- 10深入解析java虚拟机




