Using Thymeleaf in Jakarta EE Servlet
In this tutorial, I show you how to integrate Thymeleaf with Jakarta EE Servlet to replace using JSP in Jakarta EE Servlet applications. First, I will create a new Jakarta EE Servlet Maven project as an example: Thymeleaf dependency is as follows:
1 2 3 4 5 |
<dependency> <groupId>org.thymeleaf</groupId> <artifactId>thymeleaf</artifactId> <version>3.1.0.M1</version> </dependency> |
I will… Read More