码迷,mamicode.com
首页 > 编程语言 > 详细

Java -- springboot 配置 freemarker

时间:2019-07-28 09:37:54      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:--   ext   tst   name   不能   write   exception   ann   cti   

1、添加依赖

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-freemarker</artifactId>
</dependency>
2、配置application.properties

spring.freemarker.template-loader-path=classpath:/templates/
spring.freemarker.charset=utf-8
spring.freemarker.cache=false
spring.freemarker.suffix=.ftl

spring.freemarker.request-context-attribute=request
3、创建资源目录

resources 下创建 templates 目录,新增 index.ftl 文件

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
${name}
</body>
</html>
4、编写控制器

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

@Controller
public class TestController {

@RequestMapping(value = "/test")
public String test(Model model){
model.addAttribute("name", "admin");
return "index";
}
}
5、模板渲染工具类

package com.vim.common.utils;

import freemarker.template.Configuration;
import freemarker.template.Template;
import org.springframework.core.io.DefaultResourceLoader;
import org.springframework.core.io.Resource;

import java.io.*;
import java.util.Map;

public class FreemarkerUtils {

/**
* 使用模板字符串
* @param templateString
* @param model
*/
public static String renderString(String templateString, Map<String, ?> model) {
try {
StringWriter result = new StringWriter();
Template t = new Template("name", new StringReader(templateString), new Configuration());
t.process(model, result);
return result.toString();
} catch (Exception e) {
e.printStackTrace();
}
return null;
}

/**
* 配置模板文件位置
* @param directory
* @return
* @throws IOException
*/
public static Configuration buildConfiguration(String directory) throws IOException {
Configuration cfg = new Configuration(Configuration.VERSION_2_3_26);
Resource path = new DefaultResourceLoader().getResource(directory);
cfg.setDirectoryForTemplateLoading(path.getFile());
return cfg;
}

/**
* 使用模板文件
* @param template
* @param model
*/
public static void renderTemplate(Template template, Map<String, Object> model, String saveFile) {
try {
FileWriter out = new FileWriter(new File(saveFile));
template.process(model, out);
} catch (Exception e) {
e.printStackTrace(http://www.amjmh.com);
}
}

}
6、注意事项

freemarker 文件中的 js 引用一定要加闭合标签,且不能使用/>
---------------------

Java -- springboot 配置 freemarker

标签:--   ext   tst   name   不能   write   exception   ann   cti   

原文地址:https://www.cnblogs.com/liyanyan665/p/11257595.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!