spring-boot整合freemarker 出现404
Posted 陌然浅笑
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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
以上是关于spring-boot整合freemarker 出现404的主要内容,如果未能解决你的问题,请参考以下文章
Spring-Boot整合freemarker引入静态资源cssjs等(转)
为什么整合jsp后必须通过spring-boot:run方式启动?
9.Spring-Boot之Mybatis-LogBack-Freemarker