Spring Boot 使用 Thymeleaf 时,遇到“Error resolving template []”错误,该如何解决?
使用 spring boot 时出现 thymeleaf 找不到模板的错误
遇到错误:“error resolving template [], template might not exist or might not be accessible by any of the configured template resolvers”时,可能是由于 thymeleaf 找不到模板文件。以下是解决此问题的步骤:
- 确认模板文件是否存在且可访问:确保模板文件位于正确的目录中,并且 thymeleaf 可以访问该目录。
-
检查 thymeleaf 配置:确认已正确配置 thymeleaf,包括模板解析器。可以检查 application.properties 或 application.yml 文件中是否有以下配置:
spring.thymeleaf.prefix=classpath:/templates/ spring.thymeleaf.suffix=.html
-
添加 thymeleaf 依赖:如果你的 spring boot 项目中缺少 thymeleaf 依赖,请将其添加到 pom.xml 文件中:
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency>
- 重启应用程序:在进行上述更改后,需要重新启动应用程序以便应用更改。
以上就是Spring Boot 使用 Thymeleaf 时,遇到“Error resolving template []”错误,该如何解决?的详细内容,更多请关注其它相关文章!