Spring Boot FreeMarker Spring Boot怎样整合FreeMarker模板引擎

软件发布|下载排行|最新软件

当前位置:首页IT学院IT技术

Spring Boot FreeMarker Spring Boot怎样整合FreeMarker模板引擎

StrongerBrother   2021-03-16 我要评论
想了解Spring Boot怎样整合FreeMarker模板引擎的相关内容吗,StrongerBrother在本文为您仔细讲解Spring Boot FreeMarker的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:Spring,Boot,整合,FreeMarker,模板引擎,下面大家一起来学习吧。

POM

<dependency>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-freemarker</artifactId>
</dependency>

项目结构

src/
 +- main/
   +- java/
   |  +- com
   |    +- controller/
   |    |  +- IndexController.class
   |    +- Application.class
   +- resources/
     +- templates/
       +- index.ftlh
  • Application为应用程序启动类
  • IndexController为控制器,里面含有一个index请求处理方法,它返回index字符串,表示渲染模板文件index.ftlh。
  • index.ftlh为freemarker模板文件

Applciation.class

@SpringBootApplication
public class Application {

  public static void main(String[] args) {
    SpringApplication.run(Application.class, args);
  }
}

IndexController.class

@Controller
public class IndexController {
  @GetMapping("/index")
  public String index(Model model) {
    model.addAttribute("name", "Alice");
    return "index";
  }
}

注意@ResponseBody注解不能和freemarker一起使用,所以此处不能标注@RestController注解。

index.ftlh

<!DOCTYPE html>
<html>
<head>
  <title>test</title>
</head>
<body>
hello ${name}!
</body>
</html>

运行

运行Application类里的main方法。

然后访问localhost:8080/index,结果展示为:

hello Alice!

Copyright 2022 版权所有 软件发布 访问手机版

声明:所有软件和文章来自软件开发商或者作者 如有异议 请与本站联系 联系我们