模板引擎之thymeleaf-问题(1)

今天学习thymeleaf时碰到一个问题
Error resolving template template might not exist or might not be accessible
死活找不到templetes目录下的模板html文件,浏览器看不到页面
首先
1.排查 注解使用: controller中 返回视图时候不能在对应方法上加@ResponseBody 或在controlelr类上加@ResponseBody,以及不能在类上写@RestController
完全正确 。。。
2.配置文件中指定位置以及模板文件的后缀名
spring.thymeleaf.suffix=.html
#prefix:指定模板所在的目录
spring.thymeleaf.prefix= classpath:/templates/
完全正确没问题。。。。
3.对应starter-thymeleaf的maven依赖包导入

   <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-thymeleaf</artifactId>
   </dependency>

确实导入了没问题
无语中。。。
4.把target目录删除,重新启动项目,会自动编译,然后检查targret/classes下是否包含resourses文件目录中的html文件
有需要的文件。。无话可说
5.找到controller中的@RequestMapping(“index”)
加上左斜杠试一试,@RequestMapping("/index")

然后重启,从浏览器重新访问。
居然成功了,我。。。。。!!!!!!,排查了接近1个小时,总算好了

你可能感兴趣的:(thymeleaf)