org.thymeleaf.exceptions.TemplateInputException: Error resolving template "/ template might not exis

異常現象:在本地打包部署徹底沒有問題,資源文件也均可以映射上,可是打包成jar包部署到服務器上時,就一直報異常,異常信息以下:java

  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) 

工程結構以下:spring

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";這行代碼,去掉最前面的"/"就行了!app

相關文章
相關標籤/搜索