mybatis逆向工程
步骤:
1. 创建一个maven工程
2. 在pom文件中添加必要的依赖
3. 在resources下新建mybatis-generator-config.xml
4. 在resources下创建数据库配置文件db.properties
5. 创建一个GeneratorSqlMapTest.java文件
注:文件名称最好和上面一致 , 可以粘贴即用 ,如有不同稍作修改即可
具体代码:
1. 创建一个maven工程 ,在pom文件中添加必要的依赖
<dependencies>
<dependency>
<groupId>org.mybatis.generator</groupId>
<artifactId>mybatis-generator-core</artifactId>
<version>1.3.7</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.6</version>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>3.4.5</version>
</dependency>
</dependencies>
2. 在resources下新建mybatis-generator-config.xml , 赋值下面代码
注释: 代码中F:\IDEA\mybatis_reverse_project\src\main\java 替换为要生成的文件在本地磁盘的绝对径
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE generatorConfiguration PUBLIC
"-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"
"http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd" >
<generatorConfiguration>
<!--导入属性配置-->
<properties resource="db.properties"></properties>
<!--指定特定数据库的jdbc驱动jar包的位置-->
<classPathEntry location="${jdbc.path}"/>
<context id="context" targetRuntime="MyBatis3">
<!-- 是否去除自动生成的注释 true:是 : false:否 -->
<commentGenerator>
<property name="suppressAllComments" value="false"/>
<property name="suppressDate" value="true"/>
</commentGenerator>
<!--数据库连接的信息:驱动类、连接地址、用户名、密码 -->
<jdbcConnection driverClass="${jdbc.driver}"
connectionURL="${jdbc.url}"
userId="${jdbc.username}"
password="${jdbc.password}"/>
<!-- 默认false,把JDBC DECIMAL 和 NUMERIC 类型解析为 Integer,为 true时把JDBC DECIMAL 和
NUMERIC 类型解析为java.math.BigDecimal -->
<javaTypeResolver>
<property name="forceBigDecimals" value="false"/>
</javaTypeResolver>
<!--指定包名生成实体类 以及生成的地址 (可以自定义地址,如果路径不存在会自动创建) -->
<javaModelGenerator targetPackage="com.myit.domain.cargo" targetProject="F:\IDEA\mybatis_reverse_project\src\main\java">
<!-- enableSubPackages:是否让schema作为包的后缀 -->
<property name="enableSubPackages" value="false"/>
<!-- 从数据库返回的值被清理前后的空格 -->
<property name="trimStrings" value="true"/>
</javaModelGenerator>
<!--Mapper映射文件生成所在的目录 为每一个数据库的表生成对应的mapper文件 -->
<sqlMapGenerator targetPackage="com.myit.dao.cargo" targetProject="F:\IDEA\mybatis_reverse_project\src\main\java">
<!-- enableSubPackages:是否让schema作为包的后缀 -->
<property name="enableSubPackages" value="false"/>
</sqlMapGenerator>
<!-- 客户端代码,生成易于使用的针对Model对象和XML配置文件 的代码
type="ANNOTATEDMAPPER",生成Java Model 和基于注解的Mapper对象
type="MIXEDMAPPER",生成基于注解的Java Model 和相应的Mapper对象
type="XMLMAPPER",生成SQLMap XML文件和独立的Mapper接口
-->
<javaClientGenerator targetPackage="com.myit.dao.cargo"
targetProject="F:\IDEA\mybatis_reverse_project\src\main\java" type="XMLMAPPER">
<!-- enableSubPackages:是否让schema作为包的后缀 -->
<property name="enableSubPackages" value="false"/>
</javaClientGenerator>
<!-- 指定数据库表
<table schema="saas-export" tableName="co_export" domainObjectName="Export" mapperName="ExportDao"
enableCountByExample="false" enableDeleteByExample="false"
enableSelectByExample="false" enableUpdateByExample="false"/>
<table schema="saas-export" tableName="co_export_product" domainObjectName="ExportProduct" mapperName="ExportProductDao"
enableCountByExample="false" enableDeleteByExample="false"
enableSelectByExample="false" enableUpdateByExample="false"/>
<table schema="saas-export" tableName="co_ext_eproduct" domainObjectName="ExtEproduct" mapperName="ExtEproductDao"
enableCountByExample="false" enableDeleteByExample="false"
enableSelectByExample="false" enableUpdateByExample="false"/>-->
<!--enableCountByExample 开启统计查询带条件-->
<!--enableDeleteByExample 开启删除带条件-->
<!--enableSelectByExample 开启查询带条件-->
<!--enableUpdateByExample 开启更新带条件-->
<!--修改为自己数据库中的表-->
<table schema="saas-export" tableName="co_contract_product" domainObjectName="ContractProduct" mapperName="ContractProductDao"
enableCountByExample="false" enableDeleteByExample="false"
enableSelectByExample="true" enableUpdateByExample="false"/>
<table schema="saas-export" tableName="co_contract" domainObjectName="Contract" mapperName="ContractDao"
enableCountByExample="false" enableDeleteByExample="false"
enableSelectByExample="true" enableUpdateByExample="false"/>
</context>
</generatorConfiguration>
3. 在resources下创建数据库配置文件db.properties
注释 : F:\\maven\\repository\\mysql\\mysql-connector-java\\5.1.6 为本地磁盘的mysql-connector-java所在的绝对路径 , 写maven仓库中的即可 , 与第一步pom文件中依赖的版本一致
jdbc.path=F:\\maven\\repository\\mysql\\mysql-connector-java\\5.1.6
jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/saas-export
jdbc.username=root
jdbc.password=root
4. 创建一个GeneratorSqlMapTest.java文件
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.util.ArrayList;
import java.util.List;
/**
*
*/
public class GeneratorSqlMapTest {
public void generator() throws Exception{
List<String> warnings = new ArrayList<String>();
boolean overwrite = true;
//指定 逆向工程配置文件
InputStream in = GeneratorSqlMapTest.class.getClassLoader().getResourceAsStream("mybatis-generator-config.xml");
ConfigurationParser cp = new ConfigurationParser(warnings);
Configuration config = cp.parseConfiguration(in);
DefaultShellCallback callback = new DefaultShellCallback(overwrite);
MyBatisGenerator myBatisGenerator = new MyBatisGenerator(config,
callback, warnings);
myBatisGenerator.generate(null);
in.close();
}
public static void main(String[] args) throws Exception {
try {
GeneratorSqlMapTest generatorSqlmap = new GeneratorSqlMapTest();
generatorSqlmap.generator();
} catch (Exception e) {
e.printStackTrace();
}
}
}