SpringBoot整合thymeleaf后,当controller中返回前段页面时报错

错误描述

org.thymeleaf.exceptions.TemplateInputException: Error resolving template [pages/warningmsg], template might not exist or might not be accessible by any of the configured Template Resolvers

愿意分析

.yml文件配置关于thymeleaf的相关属性中关于thymeleaf的属性与之前的属性之间留有空格,导致报错
SpringBoot整合thymeleaf后,当controller中返回前段页面时报错_第1张图片

问题扩展

  1. 再使用thymeleaf模板以后,controller方法返回对应的html路径时,切不可以在返回的路径前加"/"
  2. 当返回的是非json类型的时候,如果没有使用@RestController注解或者@ResponsBody注解的时候,也会报这个错误

你可能感兴趣的:(bug解决)