Java超级实用的Freemarker工具类

网友投稿 637 2022-08-27


Java超级实用的Freemarker工具类

目录一、工具类二、测试

一、工具类

public class FreemarkerUtil {

/**

* 根据模板,利用提供的数据,生成文件

* @param ftlNameWithPath 模板文件

* @param data 数据

* @param aimFileName 最终生成的文件

* @throws IOException

* @throws TemplateException

*/

public static void execute(String ftlNameWithPath, Map data, String aimFileName) throws IOException, TemplateException {

Configuration cfg = new Configuration(Configuration.VERSION_2_3_25);//创建Freemarker配置实例

int i = ftlNameWithPath.lastIndexOf("/") == -1 ? ftlNameWithPath.lastIndexOf("\\") : ftlNameWithPath.lastIndexOf("/");

cfg.setDirectoryForTemplateLoading(new File(ftlNameWithPath.substring(0, i + 1)));

cfg.setDefaultEncoding("UTF-8");

Template t1 = cfg.getTemplate(ftlNameWithPath.substring(i + 1));//加载模板文件

Writer out = new FileWriter(new File(aimFileName));

t1.process(data, out);

out.flush();

out.close();

}

}

二、测试

模板文件:service.ftl

package com.resume.service;

import com.baomidou.mybatisplus.extension.service.IService;

import com.resume.domain.${className};

import java.util.List;

/**

* @Author: 梁云亮

* @Date: 2021/7/14 13:51

* @Describe:

*/

public interface ${className}Service extends IService<${className}> {

/**

* 查询出所有的可以使用的${comment}信息

*

* @return

*/

List<${className}> listAllUsable${className}();

/**

* 改变指定编号的${comment}的状态

*

* @param id

* @param status

* @return 返回值表示受影响的记录的行数

*/

boolean modify${className}Status(Integer id, Integer status);

/**

* 根据条件修改${comment}信息

* @param ${objNafPtWRpme}

* @return

*/

boolean modify(${className} ${objName});

}

测试代码:

public class GenApplication {

private static String className = "Project";

private static String objName = "project";

private static String comment = "期日经验";

private static String basePath = "src/main/java/com/resume/";

public static void main(String[] args) throws IOException, TemplateException {

// 生成Service接口

genService(className, objName, comment);

}

/**

* 生成Service接口

*

* @param className

* @param objName

* @throws IOException

* @throws TemplateException

*/

private static void genService(String className, String objName, String comment) throws IOException, TemplateException {

String ftlNameWithPath = basePath + "utils/gen/ftl/service.ftl";

String aimFileName = basePath + "service/" + className + "Service.java";

Map map = new HashMap<>();

map.put("objName", objName);

map.put("className", className);

map.put("comment", comment);

FreemarkerUtil.execute(ftlNameWithPath, map, aimFileName);

}

}


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:Python 3 实现色情图片识别(python基础教程)
下一篇:Python3+Dlib实现简单人脸识别案例
相关文章

 发表评论

暂时没有评论,来抢沙发吧~