目前,国内thymeleaf中文资料很少,很惊喜做第一个吃螃蟹的人。
1.thymeleaf认识
1.1介绍一下什么是thymeleaf
thymeleaf是基于java的模板引擎,支持xml/xhtml/html5。
1.2thymeleaf解析原理
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8" />
<title th:text="${welcome}">thymeleaf</title>
<script type="text/javascript" th:src="@{/webjars/jquery/1.11.1/jquery.min.js}"></script>
</head>
<script th:inline="javascript">
/*<![CDATA[*/
/*]]>*/
</script>
<body th:inline="text">
<div>
<ol>
<li><a th:href="@{/operator-page}" target="_blank">算术运算符</a></li>
<li><a th:href="@{/operator-equal-page}" target="_blank">比较和相等运算符</a></li>
<li><a th:href="@{/operator-boolean-page}" target="_blank">布尔运算符</a></li>
</ol>
</div>
</body>
</html>