您的位置:首页 > 编程语言 > Java开发

TemplateInputException:template might not exist or might not be accessible

2017-05-23 11:08 555 查看
Spring Boot 官网的介绍推荐的模板引擎Thymeleaf,使用上的确很方便,在IDEA或Eclipse中运行的时候,模板引入正常,但打成Jar包跑的时候,有时会报TemplateInputException

异常如下:



很纳闷!

来自stackoverflow有个解决的方案:

1.在application.yml 中添加配置

spring:

thymeleaf:

prefix:classpath:/templates/

2.th:include引入公共模板时注意头部不要加"/"

<aside class="aside-md hidden-print hidden-xs" id="nav" th:include="base/menu :: aside"></aside>


通过以上两步能基本解决Thymeleaf中模板引用和视图跳转报的TemplateInputException

解决方案来自:https://stackoverflow.com/questions/27249078/spring-boot-gives-templateinputexception-error-resolving-template-when-runnin
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
相关文章推荐