开发项目的时候,表很多,是不可能一点点的自己去写xml ,dao文件的,这里就需要用到代码的自动生成工具了。
第一步:导入jar包,当然,这之前,基本环境,像mybatis,数据库之类的都得搭建好。
org.mybatis.generator mybatis-generator-core 1.3.2
第二步:创建启动的 xml配置文件 mybatis-generator-config.xml
第三步,写个主方法,去运行就行了
import java.io.File;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;/** * @author szy * @version 创建时间:2018-6-4 下午9:26:54 * */public class MybatisGenerator { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub try { MybatisGenerator generatorSqlmap = new MybatisGenerator(); generatorSqlmap.generator(); } catch (Exception e) { e.printStackTrace(); } } public void generator() throws Exception{ Listwarnings = new ArrayList (); boolean overwrite = true; //指定 逆向工程配置文件 File configFile = new File("E:/java-workspace/myblog/src/main/resources/mybatis-generator-config.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); }}
完成,刷新下就能看到代码都出来了。