What is Thymeleaf?
Get introduced to the basic concepts of Thymeleaf.
We'll cover the following...
Thymeleaf
Thymeleaf is a modern server-side Java template engine.
In a Spring Boot application, we can find the templates under /src/main/resources/templates
:
Press + to interact
|-- mvn|-- mvnw|-- mvnw.cmd|-- pom.xml|-- src| |-- main| | |-- java| | | `-- com| | | `-- tamingthymeleaf| | | `-- application`-- TamingThymeleafApplication.java| | `-- resources`-- application.properties| | `-- templates| `-- test| `-- java| `-- com| `-- tamingthymeleaf| `-- application`-- TamingThymeleafApplicationTests.java
Thymeleaf ...