1. 程式人生 > >Spring Boot使用thymeleaf模板時報異常:template might not exist or might not be accessible by any of the configured Template Resolvers

Spring Boot使用thymeleaf模板時報異常:template might not exist or might not be accessible by any of the configured Template Resolvers

logs pla 開頭 spring 方法 temp ring mode acc

錯誤如下:

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

https://stackoverflow.com/questions/24260520/error-resolving-template-pages-template-might-not-exist-or-might-not-be-acces

Spring Boot使用thymeleaf模板時報異常:template might not exist or might not be accessible by any of the configured Template Resolvers