mybatisGenerator的使用

项目中Mybatis中相关类都是自己手动编写的,尤其是xxMapper.xml里面主要是SQL语句,可以预见在接下来的开发任务中,随着业务逻辑的越来越复杂,SQL语句也会越来越复杂,进而导致开发速度降低,出错率增加,维护成本上升等问题。

为了解决手动编写SQL语句效率低这个问题,我们对Mybatis部分的代码,使用逆向工程进行重构。 

所谓的逆向工程,就是在已经存在的数据库表结构基础上,通过工具,自动生成Xx.java, XxMapper.java和XxMapper.xml。

逆向工程使用了 MybatisGenerator这个工具 http://download.csdn.net/download/u013417227/9910035?web=web

1.MybatisGenerator插件是Mybatis官方提供的,这个插件存在一个固有的Bug,及当第一次生成了CategoryMapper.xml之后,再次运行会导致CategoryMapper.xml生成重复内容,而影响正常的运行。

为了解决这个问题,需要自己写一个小插件类OverIsMergeablePlugin。

import org.mybatis.generator.api.GeneratedXmlFile;
import org.mybatis.generator.api.IntrospectedTable;
import org.mybatis.generator.api.PluginAdapter;
 
import java.lang.reflect.Field;
import java.util.List;
 
public class OverIsMergeablePlugin extends PluginAdapter {
    @Override
    public boolean validate(List warnings) {
        return true;
    }
 
    @Override
    public boolean sqlMapGenerated(GeneratedXmlFile sqlMap, IntrospectedTable introspectedTable) {
        try {
            Field field = sqlMap.getClass().getDeclaredField("isMergeable");
            field.setAccessible(true);
            field.setBoolean(sqlMap, false);
        } catch (Exception e) {
            e.printStackTrace();
        }
        return true;
    }
}

2.创建generatorConfig.xml文件




 
    
        
        
 
        
        
            
            
        
 
        
        
        
        
        
            
        
        
        
            
            
        
        
        
            
        
        
        
            
        
 
        
 
        
            
            
 
        

3.MybatisGenerator

运行即生成pojo,mapper和xml。

注: 生成代码成功,只能执行一次,以后执行会覆盖掉mapper,pojo,xml 等文件上做的修改。所以在程序开始,我做了一些手脚,必须把today变量修改为今天才可以执行,这样明天再执行就无法运行了,以免以后对Category类做了改动,不小心运行了MybatisGenerator 导致Category类上做的手动改动被覆盖掉了。

import org.mybatis.generator.api.MyBatisGenerator;
import org.mybatis.generator.config.Configuration;
import org.mybatis.generator.config.xml.ConfigurationParser;
import org.mybatis.generator.internal.DefaultShellCallback;
 
import java.io.InputStream;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
 
public class MybatisGenerator {
 
    public static void main(String[] args) throws Exception {
        String today = "2018-1-26";
 
        SimpleDateFormat sdf =new SimpleDateFormat("yyyy-MM-dd");
        Date now =sdf.parse(today);
        Date d = new Date();
 
        if(d.getTime()>now.getTime()+1000*60*60*24){
            System.err.println("——————未成成功运行——————");
            System.err.println("——————未成成功运行——————");
            System.err.println("本程序具有破坏作用,应该只运行一次,如果必须要再运行,需要修改today变量为今天,如:" + sdf.format(new Date()));
            return;
        }
 
        if(false)
            return;
        List warnings = new ArrayList();
        boolean overwrite = true;
        InputStream is= MybatisGenerator.class.getClassLoader().getResource("generatorConfig.xml").openStream();
        ConfigurationParser cp = new ConfigurationParser(warnings);
        Configuration config = cp.parseConfiguration(is);
        is.close();
        DefaultShellCallback callback = new DefaultShellCallback(overwrite);
        MyBatisGenerator myBatisGenerator = new MyBatisGenerator(config, callback, warnings);
        myBatisGenerator.generate(null);
 
        System.out.println("生成代码成功,只能执行一次,以后执行会覆盖掉mapper,pojo,xml 等文件上做的修改");
 
    }
}
按照这种方式修改之后,分类的pojo,xml.mapper都不用自己写的,大大提高了生产效率。



 

参考:http://how2j.cn/


你可能感兴趣的:(mybatisGenerator的使用)