Spring Boot使用thymeleaf模板时报异常:template might not exist or might not be accessible by any of the confi
Posted Jim
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring Boot使用thymeleaf模板时报异常:template might not exist or might not be accessible by any of the confi相关的知识,希望对你有一定的参考价值。
错误如下:
template might not exist or might not be accessible by any of the configured Template Resolvers
解决方法:
1、确定模板是否在默认templates文件夹里面,并且路径要和返回的View名字一致。
2、new ModelAndView("/log/loglist");这样写是不对的,应该把开头的斜杠去掉,改成:new ModelAndView("log/loglist");
参考:
http://blog.csdn.net/linxingliang/article/details/52566941
以上是关于Spring Boot使用thymeleaf模板时报异常:template might not exist or might not be accessible by any of the confi的主要内容,如果未能解决你的问题,请参考以下文章
Spring Boot + Thymeleaf css 不适用于模板
Spring Boot2:使用Spring Boot结合Thymeleaf模板引擎使用总结