JAVA懒开发:FreeMarker快速实现类的增删改查接口

Wesley13
• 阅读 628

太懒,不多说看图,mybatis-generator工具执行后的项目结构

JAVA懒开发:FreeMarker快速实现类的增删改查接口

这个时候没得额service接口类,和service实现类,也没的controller类

执行引擎工具类BeanGenerateUtil后结果

JAVA懒开发:FreeMarker快速实现类的增删改查接口

可以看见自动创建了包,和service接口类,和service实现类与controller类,别的内容我就不在一一展示了。自动完成了单个类的增删改查的API,注释,注解,都有了,在也不用担心忘记了配置@service注解什么的了,不过模板的一定保证正确哦。

BeanGenerateUtil类

public class BeanGenerateUtil {

    private Configuration cfg; 
    private String projectUrl = "H:\\xxxxxxx\\lazyDevelop"; //项目路径

    @SuppressWarnings("deprecation")
    public void init() throws IOException {
        cfg = new Configuration();
        // 设置模板存放位置
        cfg.setDirectoryForTemplateLoading(new File(projectUrl + "//src//test//java//generating//template"));
    }

    public void process(BeanGenerateUtil bgUtil) throws IOException {
        Map<String, Object> root = new HashMap<String, Object>();

        String model_name = "User";
    
        root.put("page_id", "lazy.develop");            //生成的包名
        root.put("dao_id", "lazy.develop.generator");    //dao和实体类的包名
        root.put("module_id", "id");                    //主键
        root.put("model_name", "User");                    //类名
        root.put("model_name_cn", "用户");                //描述
        root.put("object", "user");                        //实列名
        // 项目java文件位置
        String ServicePath = projectUrl + "//src//main//java//";

        /*************** 生成Service ***************/
        String fileName = model_name + "Service.java";
        String savePath = "com//lazy//develop//service//";

        Template template = cfg.getTemplate("Service.ftl");
        bgUtil.buildTemplate(root, ServicePath, savePath, fileName, template);

        /*************** 生成ServiceImpl ***************/
        String ServiceimplPath = projectUrl + "//src//main//java//";
        fileName = model_name + "ServiceImpl.java";
        savePath = "com//lazy//develop//service//impl//";

        template = cfg.getTemplate("ServiceImpl.ftl");
        bgUtil.buildTemplate(root, ServiceimplPath, savePath, fileName, template);

        /*************** 生成Controller ***************/
        String ControllerPath = projectUrl + "//src//main//java//";
        fileName = model_name + "Controller.java";
        savePath = "com//lazy//develop//controller//";

        template = cfg.getTemplate("Controller.ftl");
        bgUtil.buildTemplate(root, ControllerPath, savePath, fileName, template);
    }

    public void buildTemplate(Map<String, Object> root, String projectPath, String savePath, String fileName, Template template) {
        String realFileName = projectPath + savePath + fileName;
        String realSavePath = projectPath + "/" + savePath;
        File newsDir = new File(realSavePath);
        if (!newsDir.exists()) {
            newsDir.mkdirs();
        }
        try {
            Writer out = new OutputStreamWriter(new FileOutputStream(realFileName), "UTF-8");
            template.process(root, out);
        } catch (Exception e) {
            System.out.println("==运行异常:"+ e);
        }
    }

    /**
     * @param args
     * @throws IOException
     */
    public static void main(String[] args) throws IOException {
        BeanGenerateUtil bgUtil = new BeanGenerateUtil();
        bgUtil.init();
        bgUtil.process(bgUtil);
        System.out.println("生成Bean成功");
    }
}

展示一个模板

/**
 * @filename:Const 2018年01月01日
 * @project 微面    边鹏  V1.0
 * Copyright(c) 2017 BianP Co. Ltd. 
 * All right reserved. 
 */
package com.${page_id}.service;

import com.${dao_id}.entity.${model_name};

/**
 * @explain 逻辑层,接口类(${model_name_cn}) 
 * @author  BianP 
 * @class    ${model_name}Service.java  
 */
public interface ${model_name}Service {
    
    /**
     * @explain 查找对象
     * @param   id
     * @return  ${model_name}
     * @throws  Exception
     */
    public ${model_name} selectByPrimaryKey(Long id);
    
    /**
     * @explain 保存对象(添加)
     * @param   ${model_name}
     * @return  int
     * @throws  Exception
     */
    public int insertSelective(${model_name} ${object});

    /**
     * @explain 有选择性:修改对象
     * @param   ${model_name}
     * @return  int
     * @throws  Exception
     */
    public int updateByPrimaryKeySelective(${model_name} ${object});

    /**
     * @explain 有选择性:全修改
     * @param   ${model_name}
     * @return  int
     * @throws  Exception
     */
    public int updateByPrimaryKey(${model_name} ${object});
    
    /**
     * @explain 删除对象 
     * @param   id
     * @return  int
     * @throws  Exception
     */
    public int deleteByPrimaryKey(Long id);
    
}

看到这,大家应该都清楚了吧,很简单的,这个方式的灵活性不是很高。不过对开发减少工作量还是不错的,也减少了工作因粗心造成的遗漏。

★更多JAVA懒开发、源码请关注:https://my.oschina.net/bianxin/blog/1612024

点赞
收藏
评论区
推荐文章
blmius blmius
3年前
MySQL:[Err] 1292 - Incorrect datetime value: ‘0000-00-00 00:00:00‘ for column ‘CREATE_TIME‘ at row 1
文章目录问题用navicat导入数据时,报错:原因这是因为当前的MySQL不支持datetime为0的情况。解决修改sql\mode:sql\mode:SQLMode定义了MySQL应支持的SQL语法、数据校验等,这样可以更容易地在不同的环境中使用MySQL。全局s
皕杰报表之UUID
​在我们用皕杰报表工具设计填报报表时,如何在新增行里自动增加id呢?能新增整数排序id吗?目前可以在新增行里自动增加id,但只能用uuid函数增加UUID编码,不能新增整数排序id。uuid函数说明:获取一个UUID,可以在填报表中用来创建数据ID语法:uuid()或uuid(sep)参数说明:sep布尔值,生成的uuid中是否包含分隔符'',缺省为
待兔 待兔
3个月前
手写Java HashMap源码
HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程22
Wesley13 Wesley13
3年前
java基础知识随身记
2018年11月12日20:51:35一、基础知识:1、JVM、JRE和JDK的区别:JVM(JavaVirtualMachine):java虚拟机,用于保证java的跨平台的特性。  java语言是跨平台,jvm不是跨平台的。JRE(JavaRuntimeEnvironment):java的运行环境,包括jvmjava的核心类
Jacquelyn38 Jacquelyn38
3年前
2020年前端实用代码段,为你的工作保驾护航
有空的时候,自己总结了几个代码段,在开发中也经常使用,谢谢。1、使用解构获取json数据let jsonData  id: 1,status: "OK",data: 'a', 'b';let  id, status, data: number   jsonData;console.log(id, status, number )
Wesley13 Wesley13
3年前
Java日期时间API系列31
  时间戳是指格林威治时间1970年01月01日00时00分00秒起至现在的总毫秒数,是所有时间的基础,其他时间可以通过时间戳转换得到。Java中本来已经有相关获取时间戳的方法,Java8后增加新的类Instant等专用于处理时间戳问题。 1获取时间戳的方法和性能对比1.1获取时间戳方法Java8以前
Wesley13 Wesley13
3年前
00:Java简单了解
浅谈Java之概述Java是SUN(StanfordUniversityNetwork),斯坦福大学网络公司)1995年推出的一门高级编程语言。Java是一种面向Internet的编程语言。随着Java技术在web方面的不断成熟,已经成为Web应用程序的首选开发语言。Java是简单易学,完全面向对象,安全可靠,与平台无关的编程语言。
Wesley13 Wesley13
3年前
MySQL部分从库上面因为大量的临时表tmp_table造成慢查询
背景描述Time:20190124T00:08:14.70572408:00User@Host:@Id:Schema:sentrymetaLast_errno:0Killed:0Query_time:0.315758Lock_
为什么mysql不推荐使用雪花ID作为主键
作者:毛辰飞背景在mysql中设计表的时候,mysql官方推荐不要使用uuid或者不连续不重复的雪花id(long形且唯一),而是推荐连续自增的主键id,官方的推荐是auto_increment,那么为什么不建议采用uuid,使用uuid究
Python进阶者 Python进阶者
9个月前
Excel中这日期老是出来00:00:00,怎么用Pandas把这个去除
大家好,我是皮皮。一、前言前几天在Python白银交流群【上海新年人】问了一个Pandas数据筛选的问题。问题如下:这日期老是出来00:00:00,怎么把这个去除。二、实现过程后来【论草莓如何成为冻干莓】给了一个思路和代码如下:pd.toexcel之前把这