• 大小: 11.62MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-07-21
  • 语言: Java
  • 标签: mybatis  

资源简介

MyBatis的一个主要的特点就是需要程序员自己编写sql,那么如果表太多的话,难免会很麻烦,所以mybatis官方提供了一个逆向工程,可以针对单表自动生成mybatis执行所需要的代码(包括mapper.xml、mapper.java、po..)。一般在开发中,常用的逆向工程方式是通过数据库的表生成代码。

资源截图

代码片段和文件信息


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;

public class GeneratorSqlmap {

public void generator() throws Exception{

List warnings = new ArrayList();
boolean overwrite = true;
//指定 逆向工程配置文件
File configFile = new File(“generatorConfig.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);


public static void main(String[] args) throws Exception {
try {
GeneratorSqlmap generatorSqlmap = new GeneratorSqlmap();
generatorSqlmap.generator();
} catch (Exception e) {
e.printStackTrace();
}

}

}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-09-01 17:38  mybatisGeneratorCustom\
     文件         542  2017-09-06 14:04  mybatisGeneratorCustom\.classpath
     目录           0  2018-08-25 22:20  mybatisGeneratorCustom\.git\
     目录           0  2017-09-06 14:04  mybatisGeneratorCustom\.git\branches\
     文件         264  2017-09-06 14:04  mybatisGeneratorCustom\.git\config
     文件         127  2017-09-06 14:04  mybatisGeneratorCustom\.git\FETCH_HEAD
     文件          23  2017-09-06 14:04  mybatisGeneratorCustom\.git\HEAD
     目录           0  2017-09-06 14:04  mybatisGeneratorCustom\.git\hooks\
     文件        1624  2017-09-06 14:04  mybatisGeneratorCustom\.git\index
     目录           0  2018-08-25 22:20  mybatisGeneratorCustom\.git\logs\
     文件         146  2017-09-06 14:04  mybatisGeneratorCustom\.git\logs\HEAD
     目录           0  2018-08-25 22:20  mybatisGeneratorCustom\.git\logs\refs\
     目录           0  2018-08-25 22:20  mybatisGeneratorCustom\.git\logs\refs\heads\
     文件         146  2017-09-06 14:04  mybatisGeneratorCustom\.git\logs\refs\heads\master
     目录           0  2018-08-25 22:20  mybatisGeneratorCustom\.git\logs\refs\remotes\
     目录           0  2018-08-25 22:20  mybatisGeneratorCustom\.git\logs\refs\remotes\origin\
     文件         160  2017-09-06 14:04  mybatisGeneratorCustom\.git\logs\refs\remotes\origin\master
     目录           0  2018-08-25 22:20  mybatisGeneratorCustom\.git\objects\
     目录           0  2017-09-06 14:04  mybatisGeneratorCustom\.git\objects\info\
     目录           0  2018-08-25 22:20  mybatisGeneratorCustom\.git\objects\pack\
     文件        2584  2017-09-06 14:04  mybatisGeneratorCustom\.git\objects\pack\pack-16030ed645c5bb9494713c3a5852701ab3dbf6f1.idx
     文件     6092631  2017-09-06 14:04  mybatisGeneratorCustom\.git\objects\pack\pack-16030ed645c5bb9494713c3a5852701ab3dbf6f1.pack
     目录           0  2018-08-25 22:20  mybatisGeneratorCustom\.git\refs\
     目录           0  2018-08-25 22:20  mybatisGeneratorCustom\.git\refs\heads\
     文件          41  2017-09-06 14:04  mybatisGeneratorCustom\.git\refs\heads\master
     目录           0  2018-08-25 22:20  mybatisGeneratorCustom\.git\refs\remotes\
     目录           0  2018-08-25 22:20  mybatisGeneratorCustom\.git\refs\remotes\origin\
     文件          41  2017-09-06 14:04  mybatisGeneratorCustom\.git\refs\remotes\origin\master
     目录           0  2017-09-06 14:04  mybatisGeneratorCustom\.git\refs\tags\
     文件         381  2017-09-06 14:04  mybatisGeneratorCustom\.project
     目录           0  2018-09-01 17:38  mybatisGeneratorCustom\.settings\
............此处省略16个文件信息

评论

共有 条评论