Thymeleaf
Thymeleaf is a templating language, its job is to quickly generate the HTML which we will send to the users of our web page.
In practice. §1
Replacing Text §1.1
This <a th:text="${user.name}"></a> sentence replaces the content of the a element with user.name. What is inside the ${...} is OGNL, and looks and functions a lot like Java.
Replacing Urls §1.2
th:if th:url th:text th:utext th:class th:attr full list in here
Local Variables §1.3
Extra Resources §2
A link to the OGNL definition
https://commons.apache.org/dormant/commons-ognland full syntaxhttps://commons.apache.org/dormant/commons-ognl/language-guide.htmlhttps://www.thymeleaf.org/doc/tutorials/2.1/usingthymeleaf.html