Java超級實用的Freemarker工具類

一、工具類

public class FreemarkerUtil {
    /**
     * 根據模板,利用提供的數據,生成文件
     * @param ftlNameWithPath 模板文件
     * @param data 數據
     * @param aimFileName 最終生成的文件
     * @throws IOException
     * @throws TemplateException
     */
    public static void execute(String ftlNameWithPath, Map<String, Object> 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 ${objName}
    * @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<String, Object> map = new HashMap<>();
        map.put("objName", objName);
        map.put("className", className);
        map.put("comment", comment);
        FreemarkerUtil.execute(ftlNameWithPath, map, aimFileName);
    }

}

到此這篇關於Java超級實用的Freemarker工具類的文章就介紹到這瞭,更多相關實用的Freemarker工具類內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: