1、thymeleaf模板引入
通用的底部footer.html
<!DOCTYPE html> <html lang="en" xmlns:th="http://www.thymeleaf.org"> <footer th:fragment="common"> <!--底部内容--> </footer> </html>
index.html引入
<!-- include只是加载 --> <div th:include="footer :: common"></div> <!-- replace是替换 --> <div th:replace="footer :: common"></div>