SpringBoot学习-(7)使用freemarker

上面一篇介绍了springboot使用thymeleaf作为模板,本篇介绍一下如何使用freemarker模板。
使用freemarker模板配置和使用thymeleaf模板配置基本相似
1.引入依赖
pom.xml

<dependency>
    <groupId>org.springframework.bootgroupId>
    <artifactId>spring-boot-starter-freemarkerartifactId>
dependency>

2.修改配置文件
application.properties
如果使用默认就不需要添加或者修改内容,本次不对application.properties文件做任何的修改配置。

3.新建页面freemarker.ftl
在src/main/resources/templates/下面新建freemarker.ftl文件


<html>
<head>
<meta charset="UTF-8">meta>
<title>Insert title heretitle>
head>
<body>
<h1>i am first freemarker pageh1>
my name is ${mname}
body>
html>

4.新建controller

package com.tang.controller;


import javax.servlet.http.HttpServletRequest;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
@RequestMapping(value="/templates")
public class FreemarkerController {


    @RequestMapping(value="/freemarker")
    public String thymeleafTemplate(HttpServletRequest request){

        request.setAttribute("mname", "wangwu");
//      map.put("mname", "zhangsana");

        return "freemarker";
    }
}

5.启动服务访问
http://localhost:8080/springboot/templates/freemarker

SpringBoot学习-(7)使用freemarker_第1张图片

thymeleaf和freemarker可以兼容使用。

你可能感兴趣的:(springboot)