Springboot的web开发中static和templates的区别
程序员文章站
2022-07-09 08:23:27
...
在src/main/resources下面有两个文件夹,static和templates,springboot默认 static中放静态页面,而templates中放动态页面
1.新建一个SpringBoot Maven项目
1.1 依赖设置(选中web和Thymeleaf)
1.2 resource结构如下
2. static目录
2.1 在static下新建hello1.html
运行程序,浏览器输入http://localhost:8080/hello1.html
so,可以在根目录下访问hello1.html,static目录类似于传统Java web中的webroot或webcontent
2.2 也可以通过接口跳转
2.2.1 添加接口
@RequestMapping("hello1")
public String hello1() {
return "hello1.html";
}
2.2.2 注释掉thymeleaf依赖
<dependencies>
<!--<dependency>-->
<!--<groupId>org.springframework.boot</groupId>-->
<!--<artifactId>spring-boot-starter-thymeleaf</artifactId>-->
<!--</dependency>-->
2.2.3 浏览器输入http://localhost:8080/hello1
3. template目录
3.1 在template下新建hello2.html
运行程序,浏览器输入http://localhost:8080/hello2.html
templates下的动态页面不能直接访问
3.2 通过接口访问
3.2.1 添加接口
注意接口中return的页面不包含.html后缀
@RequestMapping("hello2")
public String hello2() {
return "hello2";
}
3.2.2 浏览器输入http://localhost:8080/hello2
4.总结
静态页面的return默认是跳转到/static/目录下,当在pom.xml中引入了thymeleaf组件,动态跳转会覆盖默认的静态跳转,默认就会跳转到/templates/***意看两者return代码也有区别,动态没有html后缀。
推荐阅读
-
小猿圈:web前端开发和java后端开发的区别有哪些?
-
php中关于self和static代表本类的区别详解
-
PHP中new static() 和 new self() 的区别介绍
-
C++中static_cast/const_cast/dynamic_cast/reinterpret_cast的区别和使用
-
iOS---------开发中 weak和assign的区别
-
Web开发中的矢量绘图(vml,svg)处理和应用
-
Springboot中关于 static 和 templates的注意事项, 以及webjars的配置
-
Springboot的web开发中static和templates的区别
-
详解Vue-cli中的静态资源管理(src/assets和static/的区别)
-
SpringBoot配置中@ConfigurationProperties和@Value的区别