spring-boot整合freemarker 出现404
今天遇到了ftl整合springboot出现的问题
@Controller public class IndexController { @RequestMapping("hello") public String index(){ System.out.println("aaa"); return "index"; } }
在浏览器输入 localhost:8080/hello 控制台也打印了aaa,index.ftl也写的没有问题。就是出现了这个问题。
解决办法:查看源码,原来默认的是.ftlh结尾的,当然就会出现上面的错误。
修改办法,在application.properties配置文件中添加如下配置
spring.freemarker.suffix=.ftl
相关推荐
81314797 2020-11-18
89314493 2020-11-03
81941231 2020-09-17
thisisid 2020-09-09
如狼 2020-08-15
82384399 2020-06-16
86384798 2020-05-12
80183053 2020-05-02
86384798 2020-04-26
86384798 2020-04-11
rionchen 2020-04-09
86384798 2020-04-07
86384798 2020-04-04
80183053 2020-03-07
87201943 2020-03-06
83961233 2020-02-26
87201943 2020-02-21
87214551 2013-05-15