码迷,mamicode.com
首页 > 数据库 > 详细

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

时间:2020-01-03 00:40:41      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:解决   图片   通过   ima   就是   环境   request   不用   目录   

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问题

标签:解决   图片   通过   ima   就是   环境   request   不用   目录   

原文地址:https://www.cnblogs.com/EarlyBridVic/p/12142627.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!