com.whaleal.icefrog.extra.template.TemplateUtil Maven / Gradle / Ivy
The newest version!
package com.whaleal.icefrog.extra.template;
import com.whaleal.icefrog.extra.template.engine.TemplateFactory;
/**
* 模板工具类
*
* @author Looly
* @author wh
* @since 1.0.0
*/
public class TemplateUtil {
/**
* 根据用户引入的模板引擎jar,自动创建对应的模板引擎对象,使用默认配置
* 推荐创建的引擎单例使用,此方法每次调用会返回新的引擎
*
* @return {@link TemplateEngine}
* @since 1.0.0
*/
public static TemplateEngine createEngine() {
return TemplateFactory.create();
}
/**
* 根据用户引入的模板引擎jar,自动创建对应的模板引擎对象
* 推荐创建的引擎单例使用,此方法每次调用会返回新的引擎
*
* @param config 模板配置,包括编码、模板文件path等信息
* @return {@link TemplateEngine}
*/
public static TemplateEngine createEngine(TemplateConfig config) {
return TemplateFactory.create(config);
}
}