介绍
众说周知,iBatis是“半自动”ORM。Hibernate可以通过对象关系模型实现对数据库的操作,但是MyBatis只能通过手写SQL来管理对象关系和数据库字段映射。
MyBatis Generator(MBG)是MyBatis的子项目之一,用于自动化创建简单的CURD组件,减少重复性编码工作。
具体介绍http://www.mybatis.org/generator/
使用方式
MBG支持两种工作方式
- jar包工作
- Maven插件
这里介绍Maven插件的使用方法
引入Maven插件
<plugin>
<groupId>org.mybatis.generator</groupId>
<artifactId>mybatis-generator-maven-plugin</artifactId>
<version>1.3.5</version>
<configuration>
<overwrite>true</overwrite>
<verbose>true</verbose>
</configuration>
</plugin>
编辑generatorConfig.xml
<?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="generatorConfig.properties"/>-->
<!--指定特定数据库的jdbc驱动jar包的位置-->
<classPathEntry
location="C:\Users\moun\.m2\repository\mysql\mysql-connector-java\5.1.44\mysql-connector-java-5.1.44.jar"/>
<context id="default" targetRuntime="MyBatis3" defaultModelType="flat">
<property name="autoDelimitKeywords" value="true"/>
<!-- optional,旨在创建class时,对注释进行控制 -->
<commentGenerator>
<property name="suppressDate" value="true"/>
<property name="suppressAllComments" value="true"/>
</commentGenerator>
<!--jdbc的数据库连接 -->
<jdbcConnection driverClass="com.mysql.jdbc.Driver"
connectionURL="jdbc:mysql://localhost:3306/blog_db?useUnicode=true&characterEncoding=utf-8&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC"
userId="root"
password="root" />
<!--客户端接口生成器,生成针对Model和Mapper的带有iBatis注解的接口文件-->
<javaClientGenerator targetPackage="antnest.blog.dao.database" targetProject="src/main/java" type="XMLMAPPER" />
<!--Model模型生成器,用来生成含有主键的实体类以及用于多条件查询Example类-->
<javaModelGenerator targetPackage="antnest.blog.model.database" targetProject="src/main/java" />
<!--Mapper映射文件生成所在的目录 为每一个数据库的表生成对应的SqlMap文件 -->
<sqlMapGenerator targetPackage="mapper" targetProject="src/main/resources" />
<!--数据库中表生成类的信息-->
<table tableName="user"
enableCountByExample="true" enableUpdateByExample="true"
enableDeleteByExample="true" enableSelectByExample="true" />
<table tableName="config"
enableCountByExample="true" enableUpdateByExample="true"
enableDeleteByExample="true" enableSelectByExample="true" />
<!--<table tableName="blog_db.%"
enableCountByExample="true" enableUpdateByExample="true"
enableDeleteByExample="true" enableSelectByExample="true" />-->
</context>
</generatorConfiguration>
运行插件并生成代码
generatorConfig.xml配置详解
官网文档http://www.mybatis.org/generator/configreference/xmlconfig.html
http://blog.csdn.net/zsq520520/article/details/50948926
http://www.jianshu.com/p/e09d2370b796