概述


官方地址http://www.mybatis.org/generator/
Github https://github.com/mybatis/generator
mybatis两种实现方法,分别是基于注解和基于映射文件,当需要操作的实体类较多的时,逐个编写基于注解或基于映射的CURD耗时长切容易出错,使用Mybatis Generator可以保证CRUD的正确性,以及节约大量时间。
mybatis-generator.xml格式见官网
http://mybatis.org/generator/configreference/xmlconfig.html


maven

http://www.mybatis.org/generator/running/runningWithMaven.html

  1. <plugin>
  2. <groupId>org.mybatis.generator</groupId>
  3. <artifactId>mybatis-generator-maven-plugin</artifactId>
  4. <version>1.3.7</version>
  5. <executions>
  6. <execution>
  7. <id>Generate MyBatis Artifacts</id>
  8. <goals>
  9. <goal>generate</goal>
  10. </goals>
  11. </execution>
  12. </executions>
  13. <dependencies>
  14. <!-- mysql 驱动-->
  15. <dependency>
  16. <groupId>mysql</groupId>
  17. <artifactId>mysql-connector-java</artifactId>
  18. <version>5.1.28</version>
  19. </dependency>
  20. </dependencies>
  21. <configuration>
  22. <!--配置文件的路径-->
  23. <configurationFile>src/main/resources/generatorConfig.xml</configurationFile>
  24. <overwrite>true</overwrite>
  25. </configuration>
  26. </plugin>

mbg配置文件

generatorConfig.xml

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE generatorConfiguration
  3. PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"
  4. "http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd">
  5. <generatorConfiguration>
  6. <context id="test" targetRuntime="MyBatis3">
  7. <plugin type="org.mybatis.generator.plugins.EqualsHashCodePlugin"></plugin>
  8. <plugin type="org.mybatis.generator.plugins.SerializablePlugin"></plugin>
  9. <plugin type="org.mybatis.generator.plugins.ToStringPlugin"></plugin>
  10. <commentGenerator>
  11. <!-- 这个元素用来去除指定生成的注释中是否包含生成的日期 false:表示保护 -->
  12. <!-- 如果生成日期,会造成即使修改一个字段,整个实体类所有属性都会发生变化,不利于版本控制,所以设置为true -->
  13. <property name="suppressDate" value="true" />
  14. <!-- 是否去除自动生成的注释 true:是 : false:否 -->
  15. <property name="suppressAllComments" value="false" />
  16. </commentGenerator>
  17. <!--数据库链接URL,用户名、密码 -->
  18. <jdbcConnection
  19. driverClass="com.mysql.jdbc.Driver"
  20. connectionURL="jdbc:mysql://localhost:3306/demo"
  21. userId="root"
  22. password="baxiang">
  23. </jdbcConnection>
  24. <javaTypeResolver>
  25. <!-- This property is used to specify whether MyBatis Generator should
  26. force the use of java.math.BigDecimal for DECIMAL and NUMERIC fields, -->
  27. <property name="forceBigDecimals" value="false" />
  28. </javaTypeResolver>
  29. <!-- 生成模型的包名和位置 -->
  30. <javaModelGenerator targetPackage="com.mybatis.model" targetProject="src/main/java">
  31. <property name="enableSubPackages" value="true" />
  32. <property name="trimStrings" value="true" />
  33. </javaModelGenerator>
  34. <!-- 生成映射文件的包名和位置 -->
  35. <sqlMapGenerator targetPackage="com.mybatis.mapper" targetProject="src/main/java">
  36. <property name="enableSubPackages" value="true" />
  37. </sqlMapGenerator>
  38. <!-- 生成DAO的包名和位置 -->
  39. <javaClientGenerator type="XMLMAPPER" targetPackage="com.mybatis.dao" targetProject="src/main/java">
  40. <property name="enableSubPackages" value="true" />
  41. </javaClientGenerator>
  42. <table tableName="user" domainObjectName="User"
  43. enableCountByExample="false" enableUpdateByExample="false"
  44. enableDeleteByExample="false" enableSelectByExample="false"
  45. selectByExampleQueryId="false" />
  46. <table tableName="sys_user" domainObjectName="SysUser"
  47. enableCountByExample="false" enableUpdateByExample="false"
  48. enableDeleteByExample="false" enableSelectByExample="false"
  49. selectByExampleQueryId="false" />
  50. </context>
  51. </generatorConfiguration>

编译

  1. mvn mybatis-generator:generate

设置数据库配置属性文件
properties

  1. <properties resource="datasource.properties"></properties>

datasource.properties

  1. db.driverClassName=com.mysql.jdbc.Driver
  2. db.url=jdbc:mysql://192.1.1.1:3306/mmall?characterEncoding=utf-8
  3. db.username=root
  4. db.password=baxiang
  5. db.initialSize = 20
  6. db.maxActive = 50
  7. db.maxIdle = 20
  8. db.minIdle = 10
  9. db.maxWait = 10
  10. db.defaultAutoCommit = true
  11. db.minEvictableIdleTimeMillis = 3600000

将jdbcConnection修改成配置属性版本的,设置数据源

  1. <jdbcConnection driverClass="com.mysql.cj.jdbc.Driver"
  2. connectionURL="jdbc:mysql://localhost:3306/mall?useUnicode=true&amp;characterEncoding=utf-8&amp;serverTimezone=Asia/Shanghai"
  3. userId="root"
  4. password="123456">
  5. <!--解决mysql驱动升级到8.0后不生成指定数据库代码的问题-->
  6. <property name="nullCatalogMeansCurrent" value="true" />
  7. </jdbcConnection>

或者创建属性配置

Model生成

  1. <!-- Model模型生成器,用来生成含有主键key的类,记录类 以及查询Example类
  2. targetPackage 指定生成的model生成所在的包名
  3. targetProject 指定在该项目下所在的路径
  4. -->
  5. <!--<javaModelGenerator targetPackage="com.mmall.pojo" targetProject=".\src\main\java">-->
  6. <javaModelGenerator targetPackage="com.mall.pojo" targetProject="./src/main/java">
  7. <!-- 是否允许子包,即targetPackage.schemaName.tableName -->
  8. <property name="enableSubPackages" value="false"/>
  9. <!-- 是否对model添加 构造函数 -->
  10. <property name="constructorBased" value="true"/>
  11. <!-- 是否对类CHAR类型的列的数据进行trim操作 -->
  12. <property name="trimStrings" value="true"/>
  13. <!-- 建立的Model对象是否 不可改变 即生成的Model对象不会有 setter方法,只有构造方法 -->
  14. <property name="immutable" value="false"/>
  15. </javaModelGenerator>

Table

tableName 表名称
domainObjectName 类名称