SpringBoot+Thymeleaf项目打包页面跳转出现org.thymeleaf.exceptions.TemplateInputException解决办法

SpringBoot+Thymeleaf项目打包页面跳转出现org.thymeleaf.exceptions.TemplateInputException解决办法,第1张

SpringBoot+Thymeleaf项目打包页面跳转出现org.thymeleaf.exceptions.TemplateInputException解决办法
  1. 异常信息为 : template might not exist or might not be accessible by any of the configured Template Resolvers

项目在本地运行无异常,打包后发现页面无法跳转,检查日志发现是Thymeleaf出现问题。

  1. 经过各种排除最终发现 : 返回的路径前面不可以加 " / "
	错误写法 :
    @RequestMapping("/mabuduo")
    public String mabuduo_addoutIn_detailGetCkd_num(){
        return "/mabuduo/addOut";
    }
    正确写法 :
    @RequestMapping("/mabuduo")
    public String mabuduo_addoutIn_detailGetCkd_num(){
        return "mabuduo/addOut";
    }

将 " / " 除去即可。 return “mabuduo/addOut”;

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5638382.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存