- 异常信息为 : template might not exist or might not be accessible by any of the configured Template Resolvers
项目在本地运行无异常,打包后发现页面无法跳转,检查日志发现是Thymeleaf出现问题。
- 经过各种排除最终发现 : 返回的路径前面不可以加 " / "
错误写法 :
@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”;



