All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.luues.tool.template.engine.velocity.VelocityUtil Maven / Gradle / Ivy

There is a newer version: 2.0.1.RELEASE
Show newest version
package cn.luues.tool.template.engine.velocity;

import cn.luues.tool.core.exceptions.NotInitedException;
import cn.luues.tool.core.exceptions.UtilException;
import cn.luues.tool.core.io.FileUtil;
import cn.luues.tool.core.io.IORuntimeException;
import cn.luues.tool.core.io.IoUtil;
import cn.luues.tool.core.util.IdUtil;
import org.apache.velocity.Template;
import org.apache.velocity.VelocityContext;
import org.apache.velocity.app.Velocity;
import org.apache.velocity.app.VelocityEngine;
import java.io.PrintWriter;
import java.io.StringWriter;
import java.io.Writer;
import java.util.Enumeration;
import java.util.HashMap;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Properties;

/**
 * Velocity模板引擎工具类
* 使用前必须初始化工具类 * * @author Mr-Wu * @deprecated 使用TemplateUtil替代 */ @Deprecated public class VelocityUtil { /** * 是否初始化了默认引擎 */ private static boolean isInited; /** * 全局上下文,当设定值时,对于每个模板都有效 */ private static final Map globalContext = new HashMap<>(); /** * 设置Velocity全局上下文
* 当设定值时,对于每个模板都有效 * * @param name 名 * @param value 值 */ public void putGlobalContext(String name, Object value) { globalContext.put(name, value); } /** * 初始化Velocity全局属性 * * @param templateDir 模板所在目录,绝对路径 * @param charset 编码 */ synchronized public static void init(String templateDir, String charset) { Velocity.init(_newInitedProp(templateDir, charset)); Velocity.setProperty(Velocity.FILE_RESOURCE_LOADER_CACHE, true); // 使用缓存 isInited = true; // 标记完成初始化 } /** * 初始化全局属性 * * @param templateDir 模板目录 * @param charset 字符集编码 * @param initedGlobalContext 初始的全局上下文 */ public static void init(String templateDir, String charset, Map initedGlobalContext) { globalContext.putAll(initedGlobalContext); init(templateDir, charset); } /** * 新建Velocity模板引擎 * * @param templateDir 模板所在目录,绝对路径 * @param charset 编码 * @return VelocityEngine */ public static VelocityEngine newEngine(String templateDir, String charset) { final VelocityEngine ve = new VelocityEngine(); ve.setProperty(Velocity.FILE_RESOURCE_LOADER_CACHE, true); // 使用缓存 ve.init(_newInitedProp(templateDir, charset)); return ve; } /** * 获得指定模板填充后的内容 * * @param templateDir 模板所在目录,绝对路径 * @param templateFileName 模板名称 * @param context 上下文(变量值的容器) * @param charset 字符集 * @return 模板和内容匹配后的内容 */ public static String getContent(String templateDir, String templateFileName, VelocityContext context, String charset) { // 初始化模板引擎 final VelocityEngine ve = newEngine(templateDir, charset); return getContent(ve, templateFileName, context); } /** * 获得指定模板填充后的内容 * * @param ve 模板引擎 * @param templateFileName 模板名称 * @param context 上下文(变量值的容器) * @return 模板和内容匹配后的内容 */ public static String getContent(VelocityEngine ve, String templateFileName, VelocityContext context) { final StringWriter writer = new StringWriter(); // StringWriter不需要关闭 toWriter(ve, templateFileName, context, writer); return writer.toString(); } /** * 获得指定模板填充后的内容,使用默认引擎 * * @param templateFileName 模板文件 * @param context 上下文(变量值的容器) * @return 模板和内容匹配后的内容 */ public static String getContent(String templateFileName, VelocityContext context) { final StringWriter writer = new StringWriter(); // StringWriter不需要关闭 toWriter(templateFileName, context, writer); return writer.toString(); } /** * 生成文件 * * @param ve 模板引擎 * @param templateFileName 模板文件名 * @param context 上下文 * @param destPath 目标路径(绝对) */ public static void toFile(VelocityEngine ve, String templateFileName, VelocityContext context, String destPath) { toFile(ve.getTemplate(templateFileName), context, destPath); } /** * 生成文件,使用默认引擎 * * @param templateFileName 模板文件名 * @param context 模板上下文 * @param destPath 目标路径(绝对) */ public static void toFile(String templateFileName, VelocityContext context, String destPath) { assertInit(); toFile(Velocity.getTemplate(templateFileName), context, destPath); } /** * 生成文件 * * @param template 模板 * @param context 模板上下文 * @param destPath 目标路径(绝对) */ public static void toFile(Template template, VelocityContext context, String destPath) { PrintWriter writer = null; try { writer = FileUtil.getPrintWriter(destPath, Velocity.getProperty(Velocity.INPUT_ENCODING).toString(), false); merge(template, context, writer); } catch (IORuntimeException e) { throw new UtilException(e, "Write Velocity content to [{}] error!", destPath); } finally { IoUtil.close(writer); } } /** * 生成内容写入流
* 会自动关闭Writer * * @param ve 引擎 * @param templateFileName 模板文件名 * @param context 上下文 * @param writer 流 */ public static void toWriter(VelocityEngine ve, String templateFileName, VelocityContext context, Writer writer) { final Template template = ve.getTemplate(templateFileName); merge(template, context, writer); } /** * 生成内容写入流
* 会自动关闭Writer * * @param templateFileName 模板文件名 * @param context 上下文 * @param writer 流 */ public static void toWriter(String templateFileName, VelocityContext context, Writer writer) { assertInit(); final Template template = Velocity.getTemplate(templateFileName); merge(template, context, writer); } /** * 生成内容写到响应内容中
* 模板的变量来自于Request的Attribute对象 * * @param templateFileName 模板文件 * @param request 请求对象,用于获取模板中的变量值 * @param response 响应对象 */ public static void toWriter(String templateFileName, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) { final VelocityContext context = new VelocityContext(); parseRequest(context, request); parseSession(context, request.getSession(false)); Writer writer = null; try { writer = response.getWriter(); toWriter(templateFileName, context, writer); } catch (Exception e) { throw new UtilException(e, "Write Velocity content template by [{}] to response error!", templateFileName); } finally { IoUtil.close(writer); } } /** * 融合模板和内容 * * @param templateContent 模板的内容字符串 * @param context 上下文 * @return 模板和内容匹配后的内容 */ public static String merge(String templateContent, VelocityContext context) { final StringWriter writer = new StringWriter(); try { Velocity.evaluate(context, writer, IdUtil.randomUUID(), templateContent); } catch (Exception e) { throw new UtilException(e); } return writer.toString(); } /** * 融合模板和内容并写入到Writer * * @param template 模板 * @param context 内容 * @param writer Writer */ public static void merge(Template template, VelocityContext context, Writer writer) { if (template == null) { throw new UtilException("Template is null"); } if (context == null) { context = new VelocityContext(globalContext); } else { // 加入全局上下文 for (Entry entry : globalContext.entrySet()) { context.put(entry.getKey(), entry.getValue()); } } template.merge(context, writer); } /** * 将Request中的数据转换为模板引擎
* 取值包括Session和Request * * @param context 内容 * @param request 请求对象 * @return VelocityContext */ public static VelocityContext parseRequest(VelocityContext context, javax.servlet.http.HttpServletRequest request) { final Enumeration attrs = request.getAttributeNames(); if (attrs != null) { String attrName; while (attrs.hasMoreElements()) { attrName = attrs.nextElement(); context.put(attrName, request.getAttribute(attrName)); } } return context; } /** * 将Session中的值放入模板上下文 * * @param context 模板上下文 * @param session Session * @return VelocityContext */ public static VelocityContext parseSession(VelocityContext context, javax.servlet.http.HttpSession session) { if (null != session) { final Enumeration sessionAttrs = session.getAttributeNames(); if (sessionAttrs != null) { String attrName; while (sessionAttrs.hasMoreElements()) { attrName = sessionAttrs.nextElement(); context.put(attrName, session.getAttribute(attrName)); } } } return context; } // -------------------------------------------------------------------------- Private method start /** * 新建一个初始化后的属性对象 * * @param templateDir 模板所在目录 * @return 初始化后的属性对象 */ private static Properties _newInitedProp(String templateDir, String charset) { final Properties properties = new Properties(); properties.setProperty(Velocity.FILE_RESOURCE_LOADER_PATH, templateDir); properties.setProperty(Velocity.ENCODING_DEFAULT, charset); properties.setProperty(Velocity.INPUT_ENCODING, charset); // properties.setProperty(Velocity.OUTPUT_ENCODING, charset); return properties; } /** * 断言是否初始化默认引擎,若未初始化抛出 异常 */ private static void assertInit() { if (false == isInited) { throw new NotInitedException("Please use VelocityUtil.init() method to init Velocity default engine!"); } } // -------------------------------------------------------------------------- Private method end }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy