SpringBoot2.2.0+用ModelAndView跳转FreeMaker页面,报错Whitelabel Error Page .ftl后缀改为.ftlh
程序员文章站
2022-04-25 20:29:41
情况如下图:网上的解决方法都尝试了一遍SpringBoot的配置和ModelAndView的使用都检查了一遍都没有问题。但始终在报如下的错误Whitelabel Error PageThis application has no explicit mapping for /error, so you are seeing this as a fallback.解决方法:最后发现spring boot 2.2.0开始freemarker模板默认扩展名改为ftlh所以只需将 .ftl后缀 改...
情况如下图:
网上的解决方法都尝试了一遍
SpringBoot的配置和ModelAndView的使用都检查了一遍都没有问题。但始终在报如下的错误
Whitelabel Error Page
This application has no explicit mapping for /error, so you are seeing this as a fallback.
解决方法:
最后发现spring boot 2.2.0开始freemarker模板默认扩展名改为ftlh
所以只需将 .ftl后缀 改成 .ftlh 即可
本文地址:https://blog.csdn.net/Lujiahao98689/article/details/109636401