日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

使用freemarker生成java文件(其他文件也可以)

發布時間:2025/7/14 33 豆豆
生活随笔 收集整理的這篇文章主要介紹了 使用freemarker生成java文件(其他文件也可以) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

參考地址

freemarker 使用模板文件快速創建文件

demo:

package com.company;import freemarker.template.Configuration; import freemarker.template.DefaultObjectWrapper; import freemarker.template.Template; import java.io.BufferedWriter; import java.io.File; import java.io.FileWriter; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map;/*** @author cunxp* @date 2018/8/31* @description*/ public class TestFreeMarker {public static void main(String[] args) {try {Map root = new HashMap();root.put("package", "com.chinaoly.job.entity");root.put("user", "cunxp");root.put("date", "2018/08/31");root.put("tableName", "task");root.put("className", "Task");List data = new ArrayList();data.add("@Column(name = \"task_name\")\nprivate String taskName;\n");data.add("@Column(name = \"task_description\")\nprivate String taskDescription;\n");data.add("@Column(name = \"file_name\")\nprivate String fileName; \n");root.put("data", data);Configuration cfg = new Configuration(Configuration.VERSION_2_3_28);cfg.setDirectoryForTemplateLoading(new File("E:/project/hivetest/template/"));cfg.setObjectWrapper(new DefaultObjectWrapper(Configuration.VERSION_2_3_28));Template temp = cfg.getTemplate("demo.ftl");String fileName = "demo.java";File file = new File("E:/project/hivetest/template/" + fileName);FileWriter fw = new FileWriter(file);BufferedWriter bw = new BufferedWriter(fw);temp.process(root, bw);bw.flush();fw.close();} catch (Exception e) {e.printStackTrace();}} }

  模板文件:

package ${package};import org.hibernate.annotations.GenericGenerator; import javax.persistence.*; import java.io.Serializable; import java.util.Date; /*** @author ${user}* @date ${date}* @description*/ @Entity @Table(name = "${tableName}") public class ${className} implements Serializable {private static final long serialVersionUID = 1L; <#list data as row> ${row} </#list> }

轉載于:https://www.cnblogs.com/xiaopan-cp9/p/9566712.html

總結

以上是生活随笔為你收集整理的使用freemarker生成java文件(其他文件也可以)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。