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