Cannot find template location: classpath:/06IdeaDemo/src/main/resources/static/view/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false)
时间: 2023-11-27 17:03:42 浏览: 221
springboot集成thymeleaf的Demo
这个错误通常是由于Thymeleaf模板引擎的配置错误或者模板文件的位置不正确导致的。你可以检查以下几个方面:
1. 确认Thymeleaf的依赖已经添加到了项目中,例如在Maven中添加了以下依赖:
```xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
```
2. 确认在application.properties或application.yml文件中配置了Thymeleaf相关的属性,例如:
```properties
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html
spring.thymeleaf.cache=false
```
3. 确认模板文件的位置和命名是否正确,例如:
```
src/main/resources/templates/index.html
```
如果以上三个方面都检查过了,还是出现了这个错误,可以尝试将`spring.thymeleaf.check-template-location`属性设置为false,关闭Thymeleaf对模板文件位置的检查,例如:
```properties
spring.thymeleaf.check-template-location=false
```
当然,关闭此检查可能会隐藏其他潜在的问题,所以最好还是找到真正的原因并解决它。
阅读全文