解决Error resolving template template might not exist or might not be accessible问题

Posted earlybridvic

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决Error resolving template template might not exist or might not be accessible问题相关的知识,希望对你有一定的参考价值。

thymeleaf + Spring Boot 在开发环境正常,但用jar运行时报错 Error resolving template template might not exist or might not be accessible;

 

这个问题我们都很好明白,就是模板页不存在,但是实际上它能找到模板页,但是在使用th:include标签的时候才会出错,这就是问题的症结所在。

 

其实这个问题也很好解决,我们只需要在引用模板文件的时候不用”/”打头就可以了,通过类似相对路径的方式来引用,但是需要说明的是,这里的相对路径仍然是相对于模板根目录来做的。

 

@RequestMapping("/view")

public String view()  {

    return "/view";

}

改成

 

@RequestMapping("/view")

public String view()  {

    return "view";

}

就可以了

 

技术图片

以上是关于解决Error resolving template template might not exist or might not be accessible问题的主要内容,如果未能解决你的问题,请参考以下文章

exception processing, template error resolving template

异常:Error resolving template "xxx", template might not exist or might not be accessible...解

thymeleaf在开发环境正常,但用jar运行时报错 Error resolving template template might not exist or might not be access

SpringBoot使用Thymeleaf报错“TemplateInputException: Error resolving template [index], template might no“

Thymeleaf org.thymeleaf.exceptions.TemplateInputException: Error resolving template [xxx]

Error resolving template [xxx], template might not exist or might not be exist