TemplateInputException:template might not exist or might not be accessible

来源:互联网 发布:电脑网络npc怎么设置 编辑:程序博客网 时间:2024/06/15 11:14

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


阅读全文
1 0
原创粉丝点击