How to create a Spring Boot Thymeleaf web application
In this article, I will be demonstrating creating a Spring Boot Thymeleaf web application. Project Creation and Setup Step 1 – Create a new Maven Project (Refer to this blog post). This should create a project as shown below: Step 2 – Add the Spring Boot and Thymeleaf dependency . So, the pom.xml file should be similar to the following: <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.learnjava</groupId> <artifactId>learnjava-springbootthymeleaf-demo</artifactId> <version>0.0.1-SNAPSHOT</version> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.1.2.RELEASE</version> </par