热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

使用freemaker生成Java代码的步骤及示例代码

本文介绍了使用freemaker这个jar包生成Java代码的步骤,通过提前编辑好的模板,可以避免写重复代码。首先需要在springboot的pom.xml文件中加入freemaker的依赖包。然后编写模板,定义要生成的Java类的属性和方法。最后编写生成代码的类,通过加载模板文件和数据模型,生成Java代码文件。本文提供了示例代码,并展示了文件目录结构。

freemaker这个jar包可以更加有提前编辑好的模板生成Java代码,做到“不写重复代码”。
实现的步骤如下:
第一步:springboot的pom.xml文件加入依赖包

<dependency><groupId>org.freemarkergroupId><artifactId>freemarkerartifactId><version>2.3.23version>dependency>

第二步&#xff1a;编写模板

package ${classPath};public class ${className} {private Integer ${Id};
private String ${userName};
private String ${password};public Integer get${Id}(){
return ${Id};
}public void set${Id}(Integer ${Id}){this.${Id}&#61;${Id};
}public String get${userName}(){
return ${userName};
}public void set${userName}(String ${userName}){
this.${userName}&#61;${userName};}public String get${password}(){
return ${password};
}public void set${password}(String ${password}){
this.${password}&#61;${password};
}}

第三步&#xff1a;编写生成代码的类


import java.io.BufferedWriter;
import java.io.File;
import java.io.FileOutputStream;
import java.io.OutputStreamWriter;
import java.io.Writer;
import java.util.HashMap;
import java.util.Map;import freemarker.template.Configuration;
import freemarker.template.Template;public class FreemarkerDemo {private static final String TEMPLATE_PATH &#61; "src/main/java/com/chen/www/chendemo/CodeGenerator";private static final String CLASS_PATH &#61; "src/main/java/com/chen/www/chendemo/CodeGenerator";public static void main(String[] args) {// step1 创建freeMarker配置实例Configuration configuration &#61; new Configuration();Writer out &#61; null;try {// step2 获取模版路径configuration.setDirectoryForTemplateLoading(new File(TEMPLATE_PATH));// step3 创建数据模型Map<String, Object> dataMap &#61; new HashMap<String, Object>();dataMap.put("classPath", "com.chen.www.chendemo");dataMap.put("className", "User");dataMap.put("Id", "Id");dataMap.put("userName", "userName");dataMap.put("password","password");// step4 加载模版文件Template template &#61; configuration.getTemplate("test.ftl");// step5 生成数据File docFile &#61; new File(CLASS_PATH &#43; "\\" &#43; "User.java");out &#61; new BufferedWriter(new OutputStreamWriter(new FileOutputStream(docFile)));// step6 输出文件template.process(dataMap, out);System.out.println("文件创建成功 !");} catch (Exception e) {e.printStackTrace();} finally {try {if (null !&#61; out) {out.flush();}} catch (Exception e2) {e2.printStackTrace();}}}}

文件目录如下&#xff1a;
在这里插入图片描述


推荐阅读
author-avatar
杨浩
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有