Springboot集成freemarker模板

1.pom.xml
		<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-freemarker</artifactId>
        </dependency>
        <dependency>
            <groupId>commons-io</groupId>
            <artifactId>commons-io</artifactId>
            <version>2.6</version>
        </dependency>
2.代码
2.1 FreemarkerService.java
import java.io.File;
import java.util.Map;

/**
 * className    FreemarkerService
 * description  生成静态页面service
 */
public interface FreemarkerService {

    /**
     * 生成静态页面
     *
     * @param ftlName 模板名称
     * @param params  数据模型
     * @param outFile 输出文件
     * @return 返回
     */
    boolean createStaticHtml(String ftlName, Map<Object, Object> params, File outFile);

    /**
     * 生成静态数据
     *
     * @param ftlName 模板名称
     * @param params  数据模型
     * @return 返回
     * @throws Exception 异常
     */
    String createStaticData(String ftlName, Map<Object, Object> params) throws Exception;


    /**
     * 渲染静态数据
     *
     * @param ftlStr 模板字符串 - 内容
     * @param params  数据模型
     * @return 返回
     * @throws Exception 异常
     */
    String createStaticDataForStr(String ftlStr, Map<Object, Object> params) throws Exception;


}

2.2 FreemarkerServiceImpl.java

import com.yetech.platform.framework.service.FreemarkerService;
import freemarker.template.Configuration;
import freemarker.template.Template;
import freemarker.template.TemplateException;
import org.apache.commons.io.FileUtils;
import org.apache.commons.io.IOUtils;
import org.springframework.stereotype.Service;
import org.springframework.ui.freemarker.FreeMarkerTemplateUtils;
import javax.annotation.Resource;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.Map;

/**
 * className    FreemarkerServiceImpl
 * description  生成静态页面service实现
 */
@Service
public class FreemarkerServiceImpl implements FreemarkerService {

    @Resource
    private Configuration configuration;

    @Override
    public boolean createStaticHtml(String ftlName, Map<Object, Object> params, File outFile) {
        InputStream inputStream = null;
        FileOutputStream fileOutputStream = null;
        try {
            //获取模板
            Template template = configuration.getTemplate(ftlName);
            // 静态化页面内容
            String content = FreeMarkerTemplateUtils.processTemplateIntoString(template, params);
            inputStream = IOUtils.toInputStream(content, "UTF-8");
            // 输出文件
            FileUtils.forceMkdirParent(outFile);
            fileOutputStream = new FileOutputStream(outFile);
            IOUtils.copy(inputStream, fileOutputStream);
            return true;
        } catch (IOException | TemplateException e) {
            e.printStackTrace();
            return false;
        } finally {
            // 关闭流
            if (inputStream != null) {
                try {
                    inputStream.close();
                } catch (IOException e) {
                    e.printStackTrace();
                } finally {
                    if (fileOutputStream != null) {
                        try {
                            fileOutputStream.close();
                        } catch (IOException e) {
                            e.printStackTrace();
                        }
                    }
                }
            }
        }
    }

    @Override
    public String createStaticData(String ftlName, Map<Object, Object> params) throws Exception {
        try {
            //获取模板
            Template template = configuration.getTemplate(ftlName);
            // 静态化数据内容
            return FreeMarkerTemplateUtils.processTemplateIntoString(template, params);
        } catch (IOException | TemplateException e) {
            e.printStackTrace();
            throw new Exception(e);
        }
    }

    @Override
    public String createStaticDataForStr(String ftlName, String ftlStr, Map<Object, Object> params) throws Exception {
        try {
            //创建模板
            Template template = new Template(ftlName, ftlStr, configuration);
            // 渲染静态数据内容
            return FreeMarkerTemplateUtils.processTemplateIntoString(template, params);
        } catch (IOException | TemplateException e) {
            e.printStackTrace();
            throw new Exception(e);
        }
    }

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值