`

spring boot部署中异常:org.thymeleaf.exceptions.TemplateInputException

 
阅读更多

org.thymeleaf.exceptions.TemplateInputException

 

异常现象:在本地打包部署完全没有问题,资源文件也都可以映射上,但是打包成jar包部署到服务器上时,就一直报异常,异常信息如下:

 

[java] view plain copy
 
  1. 严重: Servlet.service() for servlet [dispatcherServlet] in context with path []  
  2. threw exception [Request processing failed; nested exception is org.thymeleaf.ex  
  3. ceptions.TemplateInputException: Error resolving template "/emailInfoManager/ema  
  4. ilInfoList", template might not exist or might not be accessible by any of the c  
  5. onfigured Template Resolvers] with root cause  
  6. org.thymeleaf.exceptions.TemplateInputException: Error resolving template "/emai  
  7. lInfoManager/emailInfoList", template might not exist or might not be accessible  
  8.  by any of the configured Template Resolvers  
  9.         at org.thymeleaf.TemplateRepository.getTemplate(TemplateRepository.java:  
  10. 246)  
  11.         at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1104)  
  12.         at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1060)  
  13.         at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1011)  
  14.         at org.thymeleaf.spring4.view.ThymeleafView.renderFragment(ThymeleafView  
  15. .java:335)  


工程结构如下:

 

controller示例如下:

 

[java] view plain copy
 
  1. @RequestMapping(value = "/findEmailInfoDataCriteria", method = RequestMethod.GET)  
  2.     public String findEmailInfoDataCriteria(@RequestParam(value = "page", defaultValue = "0") Integer page,  
  3.             @RequestParam(value = "size", defaultValue = "10") Integer size,  
  4.             @ModelAttribute("emailInfoData") EmailInfo emailInfo, ModelMap modelMap) {  
  5.         Page<EmailInfo> list = emailService.findEmailDataCriteria(page, size, emailInfo);  
  6.         modelMap.addAttribute("datas", list);  
  7.         return "/emailInfoManager/emailInfoList";  
  8.     }  

 

 

经过大量的排查,最终的问题出在return "/emailInfoManager/emailInfoList";这行代码,去掉最前面的"/"就好了!

分享到:
评论

相关推荐

    thymeleaf-3.0.12.RELEASE-API文档-中文版.zip

    Maven坐标:org.thymeleaf:thymeleaf:3.0.12.RELEASE; 标签:thymeleaf、中文文档、jar包、java; 使用方法:解压翻译后的API文档,用浏览器打开“index.html”文件,即可纵览文档内容。 人性化翻译,文档中的代码...

    thymeleaf-extras-java8time-3.0.1.RELEASE-API文档-中文版.zip

    Maven坐标:org.thymeleaf.extras:thymeleaf-extras-java8time:3.0.1.RELEASE; 标签:extras、thymeleaf、java8time、jar包、java、API文档、中文版; 使用方法:解压翻译后的API文档,用浏览器打开“index.html”...

    thymeleaf-extras-java8time-3.0.4.RELEASE-API文档-中英对照版.zip

    Maven坐标:org.thymeleaf.extras:thymeleaf-extras-java8time:3.0.4.RELEASE; 标签:extras、thymeleaf、java8time、jar包、java、中英对照文档; 使用方法:解压翻译后的API文档,用浏览器打开“index.html”文件...

    thymeleaf-spring5-3.0.14.RELEASE-API文档-中英对照版.zip

    Maven坐标:org.thymeleaf:thymeleaf-spring5:3.0.14.RELEASE; 标签:thymeleaf、spring5、jar包、java、中英对照文档; 使用方法:解压翻译后的API文档,用浏览器打开“index.html”文件,即可纵览文档内容。 人性...

    thymeleaf-spring5-3.0.12.RELEASE-API文档-中文版.zip

    Maven坐标:org.thymeleaf:thymeleaf-spring5:3.0.12.RELEASE; 标签:thymeleaf、spring5、中文文档、jar包、java; 使用方法:解压翻译后的API文档,用浏览器打开“index.html”文件,即可纵览文档内容。 人性化...

    thymeleaf-spring5-3.0.14.RELEASE-API文档-中文版.zip

    对应Maven信息:groupId:org.thymeleaf,artifactId:thymeleaf-spring5,version:3.0.14.RELEASE 使用方法:解压翻译后的API文档,用浏览器打开“index.html”文件,即可纵览文档内容。 人性化翻译,文档中的...

    thymeleaf-spring5-3.0.10.RELEASE-API文档-中英对照版.zip

    Maven坐标:org.thymeleaf:thymeleaf-spring5:3.0.10.RELEASE; 标签:thymeleaf、spring5、jar包、java、API文档、中英对照版; 使用方法:解压翻译后的API文档,用浏览器打开“index.html”文件,即可纵览文档内容...

    thymeleaf-3.0.5.zip

    thymeleaf-3.0.5中文文档,清晰无广告,官方中文翻译 1.Thymeleaf简介 2.示例项⽬:Good Thymes Virtual Grocery 3.使⽤⽂本 4.标准表达式语法 5.设置属性值 6.循环迭代 7.条件判断 8.模板布局 9.局部变量 10.属性...

    thymeleaf-spring4-3.0.3.RELEASE-API文档-中文版.zip

    对应Maven信息:groupId:org.thymeleaf,artifactId:thymeleaf-spring4,version:3.0.3.RELEASE 使用方法:解压翻译后的API文档,用浏览器打开“index.html”文件,即可纵览文档内容。 人性化翻译,文档中的代码...

    thymeleaf-spring5-3.0.10.RELEASE-API文档-中文版.zip

    Maven坐标:org.thymeleaf:thymeleaf-spring5:3.0.10.RELEASE; 标签:thymeleaf、spring5、jar包、java、API文档、中文版; 使用方法:解压翻译后的API文档,用浏览器打开“index.html”文件,即可纵览文档内容。 ...

    Spring Boot:SpringBoot集成Thymeleaf模板引擎.docx

    Spring Boot:SpringBoot集成Thymeleaf模板引擎.docx

    thymeleaf-spring5-3.0.11.RELEASE-API文档-中英对照版.zip

    Maven坐标:org.thymeleaf:thymeleaf-spring5:3.0.11.RELEASE; 标签:thymeleaf、spring5、中英对照文档、jar包、java; 使用方法:解压翻译后的API文档,用浏览器打开“index.html”文件,即可纵览文档内容。 人性...

    thymeleaf-spring4-3.0.3.RELEASE-API文档-中英对照版.zip

    对应Maven信息:groupId:org.thymeleaf,artifactId:thymeleaf-spring4,version:3.0.3.RELEASE 使用方法:解压翻译后的API文档,用浏览器打开“index.html”文件,即可纵览文档内容。 人性化翻译,文档中的代码...

    thymeleaf-3.0.11.RELEASE-API文档-中文版.zip

    Maven坐标:org.thymeleaf:thymeleaf:3.0.11.RELEASE; 标签:thymeleaf、中文文档、jar包、java; 使用方法:解压翻译后的API文档,用浏览器打开“index.html”文件,即可纵览文档内容。 人性化翻译,文档中的代码...

    thymeleaf-3.0.9.RELEASE-API文档-中文版.zip

    Maven坐标:org.thymeleaf:thymeleaf:3.0.9.RELEASE; 标签:thymeleaf、中文文档、jar包、java; 使用方法:解压翻译后的API文档,用浏览器打开“index.html”文件,即可纵览文档内容。 人性化翻译,文档中的代码和...

    thymeleaf-3.0.12.RELEASE-API文档-中英对照版.zip

    Maven坐标:org.thymeleaf:thymeleaf:3.0.12.RELEASE; 标签:thymeleaf、jar包、java、中英对照文档; 使用方法:解压翻译后的API文档,用浏览器打开“index.html”文件,即可纵览文档内容。 人性化翻译,文档中的...

    thymeleaf-extras-java8time:Thymeleaf“ extras”方言,用于格式化和创建Java 8 Time API对象

    Thymeleaf-Java 8时间API兼容性模块 地位 这是一个thymeleaf Extras模块...groupId: org.thymeleaf.extras artifactId: thymeleaf-extras-java8time 发行包 分发包(二进制+源+ Javadoc)可以从下载。 安装 只需将or

    thymeleaf-3.0.3.RELEASE-API文档-中文版.zip

    对应Maven信息:groupId:org.thymeleaf,artifactId:thymeleaf,version:3.0.3.RELEASE 使用方法:解压翻译后的API文档,用浏览器打开“index.html”文件,即可纵览文档内容。 人性化翻译,文档中的代码和结构...

    spring-boot-starter-thymeleaf-2.1.0.RELEASE.jar

    java运行依赖jar包

    thymeleaf-spring5-3.0.9.RELEASE-API文档-中文版.zip

    Maven坐标:org.thymeleaf:thymeleaf-spring5:3.0.9.RELEASE; 标签:thymeleaf、spring5、中文文档、jar包、java; 使用方法:解压翻译后的API文档,用浏览器打开“index.html”文件,即可纵览文档内容。 人性化...

Global site tag (gtag.js) - Google Analytics