添加Thymeleaf依赖:在pom.xml文件中,添加以下依赖来引入Thymeleaf: org.springframework.boot spring-boot-starter-thymeleaf创建Thymeleaf模板:在src/main/resources/templates目录下创建HTML文件,例如index.html。这是Spring Boot默认的模板路径。 示例index.html文件内容: Hello, Thymeleaf!创建控制器:编写一个Spring控制器来处理请求,并将数据传递给Thymeleaf模板。import org.springframework.stereotype.Controller;import org.springframework.ui.Model;import org.springframework.web.bind..