为啥加thymeleaf依赖,启动还是到static文件夹下面的index.html页面,而不是到template下面的index.html页面
时间: 2024-03-23 11:39:07 浏览: 95
在使用Thymeleaf模板引擎时,需要在Spring Boot应用程序中配置模板解析器和视图控制器。
请检查以下几点:
1. 确认您已经在pom.xml文件中添加了Thymeleaf依赖。
2. 确认您已经在application.properties或application.yml文件中配置了视图控制器。例如:
```
spring.mvc.view.prefix=/templates/
spring.mvc.view.suffix=.html
```
这个配置表示在templates目录下寻找后缀为.html的文件。
3. 确认您的模板文件放在了classpath:/templates目录下。
如果以上设置都正确,应该可以正确地加载模板文件。如果仍然无法加载,请检查是否有其他配置问题或错误。
阅读全文