【我的SSM博客实战02】mybits自动生成代码配置

上节我们搞定了框架,这里我们搞mybits自动生成代码的步骤
1.写一个静态方法

import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;

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;

public class MbgTest {

    /**
     * @param args
     * @throws Exception
     * @throws IOException
     */
    public static void main(String[] args) throws IOException, Exception {
        List warnings = new ArrayList();
        boolean overwrite = true;
        File configFile = new File("mbg.xml");
        ConfigurationParser cp = new ConfigurationParser(warnings);
        Configuration config = cp.parseConfiguration(configFile);
        DefaultShellCallback callback = new DefaultShellCallback(overwrite);
        MyBatisGenerator myBatisGenerator = new MyBatisGenerator(config, callback, warnings);
        myBatisGenerator.generate(null);
    }
}

2.根据静态方法在项目根目录制作添加一个文件——mbg.xml






   
       
           
           
       
       
       
       
       
       
           
       
       
       
           
           
       
       
       
           
       
       
       
           
       
       
       

在这里只要运行MbgTest.java就会自动生成代码,避免了我们很多重复的劳动

你可能感兴趣的:(【我的SSM博客实战02】mybits自动生成代码配置)