例:
第一步:声明
公共的东西用th:fragment声明 或者 选择器声明
<footer th:fragment="copy">
© 2011 The Good Thymes Virtual Grocery
</footer>
选择器声明
<div id="commonscript"></div>
第二步:引用
三种方式
<body>
<div>
<footer>
© 2011 The Good Thymes Virtual Grocery
</footer>
</div>
<footer>
© 2011 The Good Thymes Virtual Grocery
</footer>
<div>
© 2011 The Good Thymes Virtual Grocery
</div>
</body>
thymeleaf的基本使用
1.导入标签
<html lang="en" xmlns:th="http://www.thymeleaf.org">`
2.使用