您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
本篇内容介绍了“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类怎么使用”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注亿速云网站,小编将为大家输出更多高质量的实用文章!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。