WARN 3264 --- [ restartedMain] ion$DefaultTemplateResolverConfiguration : Cannot find template location: classpath:/templates/ (please add some templates or check your Thymeleaf configuration)解决报错
时间: 2024-01-14 19:14:06 浏览: 166
这个报错是因为在Thymeleaf的配置中没有指定正确的模板位置,可以尝试按照以下步骤排查和解决:
1. 确认项目中是否存在 templates 目录。如果不存在,可以手动创建一个 templates 目录。
2. 检查 application.properties 或 application.yml 文件中 Thymeleaf 的配置是否正确。确保以下参数配置正确:
```
spring.thymeleaf.check-template-location=true
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html
```
3. 如果以上两个步骤都没有解决问题,可以尝试重启应用程序,或者检查项目的依赖是否正确配置。
希望以上信息能够帮助你解决问题。
阅读全文