##环境及版本:
- Idea:2019.2
- springboot: 2.1.7.RELEASE
一 基本使用
1 引入pom.xml
1 | <dependency> |
2 新建controller
1 | @RequestMapping("{page}") |
3 resources目录下新建文件夹templates,然后新建index.html
1 | <!DOCTYPE html> |
4 总体目录结构
浏览器输入 http://localhost:8080/index 即可看到内容
二 配合静态资源使用
- resources目录下新建文件夹static,然后新建my.js
1
2
3
4
5(function ($) {
$.fn.alertObject = function () {
alert('调用自定义js文件中的自定义方法');
}
})(jQuery); - index.html 引入3 再次运行,就会有加载js了
1
2
3
4
5
6
7
8
9
10
11<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script type="text/javascript" src="js/my.js"></script>
</head>
<body>
i am index.html
</body>
</html>
直接访问http://localhost:8080/js/my.js 也能加载出js内容
三 thymeleaf自定义使用
1 thymeleaf访问格式
目前controller直接访问http://localhost:8080/index即可,那是因为thymeleaf默认的访问路径就是resources下的templates,而后缀默认.html
源码如下:
2 修改thymeleaf的默认格式
templates下新建html文件夹,把index.html 放进去
3 新建application.yml1
2
3
4
5
6
7
8spring:
#thymeleaf 自定义视图配置
thymeleaf:
prefix: classpath:/templates/html/
suffix: .html
#开发时关闭缓存,不然没法看到实时页面
cache: false
mode: HTML5 - 再次运行,
偷偷告诉你们,suffix后缀直接修改为jsp,即可使用jsp格式了。。。网上thymeleaf使用jsp费了牛劲了。。。
http://localhost:8080/index
四 js 、css路径自定义
1 官方路径
上面新建static/js/my.js就可以正常引用,那就因为静态资源的加载路径默认有四个:
2 自定义
resources下新建custom/js,把my.js移动到下面
3 修改application.yml4 访问http://localhost:8080/index即可1
2
3
4
5
6
7spring:
#静态资源访问格式 对比正常路径需要加上me //http://localhost:8080/me/js/my.js
mvc:
# static-path-pattern: /me/**
#自定义静态资源路径 //http://localhost:8080/js/my.js
resources:
static-locations: classpath:/custom/