就是缺少了依赖,添加以下依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
还是不行,那可能就是html没有引号thymeleaf头部
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org" >
<head>
<head>
<title>Good Thymes Virtual Grocery</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<p th:text="${title}"></p>
</body>
</html>

本文解决了一个Spring Boot应用中Thymeleaf模板引擎的依赖缺失问题,并介绍了如何正确引入依赖以及配置HTML文件以确保Thymeleaf正常工作。
798

被折叠的 条评论
为什么被折叠?



