欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Springboot整合freemarker 404问题解决方案

程序员文章站 2022-08-11 15:22:28
今天遇到了ftl整合springboot出现的问题@controllerpublic class indexcontroller { @requestmapping("hello") public...

今天遇到了ftl整合springboot出现的问题

@controller
public class indexcontroller {

  @requestmapping("hello")
  public string index(){
    system.out.println("aaa");
    return "index";
  }
}

在浏览器输入 localhost:8080/hello 控制台也打印了aaa,index.ftl也写的没有问题。就是出现了这个问题。

Springboot整合freemarker 404问题解决方案

解决办法:查看源码,原来默认的是.ftlh结尾的,当然就会出现上面的错误。

Springboot整合freemarker 404问题解决方案

修改办法,在application.properties配置文件中添加如下配置

spring.freemarker.suffix=.ftl

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。