源码剖析介绍:基于mybatis-generator-core 1.3.5项目的修订版以及源码剖析

目前,我把该项目,发布到了Maven中央仓库中,可直接使用;

使用方式

在项目.pom中,添加以下部分,更新maven即可(因为我已经把项目发布到maven中央仓库去了)。

<build>
<defaultGoal>compile</defaultGoal>
<plugins> <!-- 指定java版本-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin> <plugin>
<groupId>org.mybatis.generator</groupId>
<artifactId>mybatis-generator-maven-plugin</artifactId>
<version>1.3.5</version>
<configuration>
<verbose>true</verbose>
<overwrite>true</overwrite>
<!-- 指定配置文件的路径,默认是在resources下-->
<configurationFile>${basedir}/src/main/resources/generator/generatorConfig.xml</configurationFile>
</configuration>
<executions>
<execution>
<id>Generate MyBatis Artifacts</id>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>io.github.orange1438</groupId>
<artifactId>mybatis-generator-core</artifactId>
<version>1.3.5</version>
</dependency>
</dependencies>
</plugin> </plugins>
</build>

配置文件

1.generatorConfig.properties

# data base info
jdbc.dataSource.url:jdbc:mysql://localhost:3306/manage_system?useUnicode=true&characterEncoding=utf8&characterSetResults=utf8
jdbc.dataSource.driverClassName:com.mysql.jdbc.Driver
jdbc.dataSource.username:root
jdbc.dataSource.password:123456
# Mybatis Generator configuration
# classPath:maven repository path,下载到仓库里,根据仓库路径修改
jdbc.mybatisGenerator.classPath=E:/orange/Documents/IdeaProjects/repository/mysql/mysql-connector-java/5.1.35/mysql-connector-java-5.1.35.jar
# javaModelGenerator
model.path=src/main/resources/test
model.package=orange1438.entity
# javaClientGenerator
mapper.path=src/main/resources/test
mapper.package=orange1438.mappers
# sqlMapGenerator
mapper.xml.path=src/main/resources/test
mapper.xml.package=orange1438.mapper
# service——If configuration
service.path=src/main/resources/test
service.package=orange1438.service
service.package.impl=orange1438.service.impl

2.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"> <!-- 参考官方文档
http://www.mybatis.org/generator/configreference/xmlconfig.html
http://generator.sturgeon.mopaas.com/index.html
http://www.jianshu.com/p/e09d2370b796
http://mbg.cndocs.tk/
-->
<generatorConfiguration> <!-- 引入配置文件 -->
<properties resource="test/generatorConfig.properties"/> <!-- 指定数据连接驱动jar地址 -->
<classPathEntry location="${jdbc.mybatisGenerator.classPath}"/> <!-- 一个数据库一个context -->
<context id="testTables" targetRuntime="MyBatis3">
<!-- 自动识别数据库关键字,默认false,如果设置为true,根据SqlReservedWords中定义的关键字列表;
一般保留默认值,遇到数据库关键字(Java关键字),使用columnOverride覆盖
-->
<property name="autoDelimitKeywords" value="false"/>
<!-- 生成的Java文件的编码 -->
<property name="javaFileEncoding" value="UTF-8"/>
<!-- 格式化java代码 -->
<property name="javaFormatter" value="org.mybatis.generator.api.dom.DefaultJavaFormatter"/>
<!-- 格式化XML代码 -->
<property name="xmlFormatter" value="org.mybatis.generator.api.dom.DefaultXmlFormatter"/> <!--开启抑制类型的警告信息-->
<property name="suppressTypeWarnings" value="true"/> <!-- 插件 :其他插件参考http://www.jianshu.com/p/1b826d43dbaf-->
<!--插件 :用来给Java模型生成equals和hashcode方法-->
<!--<plugin type="org.mybatis.generator.plugins.EqualsHashCodePlugin"/>-->
<!--插件 :用来为生成的Java模型类添加序列化接口-->
<plugin type="org.mybatis.generator.plugins.SerializablePlugin"/>
<!--插件 :生成的Java模型创建一个toString方法-->
<plugin type="org.mybatis.generator.plugins.ToStringPlugin"/>
<plugin type="org.mybatis.generator.plugins.RenameExampleClassPlugin">
<property name="searchString" value="Example$"/>
<property name="replaceString" value="Criteria"/>
</plugin> <!-- 统一Mapper 接口 -->
<plugin type="org.mybatis.generator.plugins.MapperPlugin">
<property name="interfaceName" value="IMapper"/>
<!-- 是否删除Mapper类里的方法,默认删除-->
<property name="deleteMethod" value="true"/>
</plugin> <!-- service层插件 -->
<plugin type="org.mybatis.generator.plugins.MybatisServicePlugin">
<property name="targetPackage" value="${service.package}"/>
<property name="implementationPackage" value="${service.package.impl}"/>
<property name="targetProject" value="${service.path}"/>
<property name="enableInsert" value="true"/>
<property name="enableUpdateByExampleSelective" value="true"/>
<property name="enableInsertSelective" value="true"/>
<property name="enableUpdateByPrimaryKey" value="true"/>
<property name="enableDeleteByPrimaryKey" value="true"/>
<property name="enableDeleteByExample" value="true"/>
<property name="enableUpdateByPrimaryKeySelective" value="true"/>
<property name="enableUpdateByExample" value="true"/>
</plugin> <!-- 注释 -->
<commentGenerator>
<!-- 是否去除自动生成的注释 true:是 : false:否 -->
<property name="suppressAllComments" value="false"/>
<!-- 是否给实体类生成的备注的注释 true:是 : 默认为false:否 -->
<property name="addRemarkComments" value="true"/>
<!-- 是否去掉注释代时间戳 true:是 : false:否,默认yyyy-MM-dd HH:mm:ss(1.3.5-chinese-annotation修改版)-->
<property name="suppressDate" value="false"/>
<property name="dateFormat" value="yyyy/MM/dd HH:mm"/> <!-- 自己添加的参数属性:数据表字段的get、set方法是否添加final关键字,默认为true -->
<property name="addMethodFinal" value="true"/>
<property name="author" value="orange1438"/>
</commentGenerator> <!--数据库连接的信息:驱动类、连接地址、用户名、密码 -->
<jdbcConnection driverClass="${jdbc.dataSource.driverClassName}"
connectionURL="${jdbc.dataSource.url}"
userId="${jdbc.dataSource.username}"
password="${jdbc.dataSource.password}">
</jdbcConnection> <!-- 类型转换 -->
<javaTypeResolver>
<!-- 默认false,把JDBC DECIMAL 和 NUMERIC 类型解析为 Integer,为 true时把JDBC DECIMAL 和
NUMERIC 类型解析为java.math.BigDecimal -->
<property name="forceBigDecimals" value="false"/>
</javaTypeResolver> <!-- 生成实体类的位置 -->
<javaModelGenerator targetPackage="${model.package}"
targetProject="${model.path}">
<!-- for MyBatis3/MyBatis3Simple
自动为每一个生成的类创建一个构造方法,构造方法包含了所有的field;而不是使用setter;
-->
<property name="constructorBased" value="false"/> <!-- 是否在当前路径下新加一层schema,
eg:false路径com.orange1438.entity,
true:com.orange1438.entity.[schemaName]
-->
<property name="enableSubPackages" value="true"/>
<!-- 是否针对string类型的字段在set/get的时候进行trim调用:清理前后的空格 -->
<property name="trimStrings" value="true"/>
</javaModelGenerator> <!-- 生成mapper xml文件 -->
<sqlMapGenerator targetPackage="${mapper.xml.package}"
targetProject="${mapper.xml.path}">
<!-- 解释同上:生成实体类的位置 -->
<property name="enableSubPackages" value="true"/>
</sqlMapGenerator> <!-- 对于mybatis来说,即生成Mapper接口,注意,如果没有配置该元素,那么默认不会生成Mapper接口
targetPackage/targetProject:同javaModelGenerator
type:选择怎么生成mapper接口(在MyBatis3/MyBatis3Simple下):
1,ANNOTATEDMAPPER:会生成使用Mapper接口+Annotation的方式创建(SQL生成在annotation中),不会生成对应的XML;
2,MIXEDMAPPER:使用混合配置,会生成Mapper接口,并适当添加合适的Annotation,但是XML会生成在XML中;
3,XMLMAPPER:会生成Mapper接口,接口完全依赖XML;
注意,如果context是MyBatis3Simple:只支持ANNOTATEDMAPPER和XMLMAPPER
-->
<!-- 生成mapper接口生成的位置 -->
<javaClientGenerator type="XMLMAPPER"
targetPackage="${mapper.package}"
targetProject="${mapper.path}">
<!-- 解释同上:生成实体类的位置 -->
<property name="enableSubPackages" value="true"/>
</javaClientGenerator> <!-- mvn mybatis-generator:generate -->
<!-- 指定生成的数据库表 -->
<!-- domainObjectName:指定生成的实体类的文件名 -->
<!--<table tableName="sys_user" domainObjectName="User"/>-->
<table tableName="test" domainObjectName="Test"/> <!-- 其他需求:有些表的字段需要指定java类型 -->
<!--<table schema="management_system" tableName="s_user"-->
<!--domainObjectName="UserEntity" enableCountByExample="false"-->
<!--enableDeleteByExample="false" enableSelectByExample="false"-->
<!--enableUpdateByExample="false">-->
<!--&lt;!&ndash; schema即为数据库名 tableName为对应的数据库表 domainObjectName是要生成的实体类 enable*ByExample-->
<!--是否生成 example类 &ndash;&gt;-->
<!--&lt;!&ndash; 忽略列,不生成bean 字段 &ndash;&gt;-->
<!--<ignoreColumn column="FRED" />-->
<!--&lt;!&ndash; 指定列的java数据类型 &ndash;&gt;-->
<!--<columnOverride column="LONG_VARCHAR_FIELD" jdbcType="VARCHAR" />-->
<!--</table>--> </context> </generatorConfiguration>

最新文章

  1. RxJava简单的介绍
  2. (转)Excel的 OleDb 连接串的格式(连接Excel 2003-2013)
  3. Node.js 自学之旅
  4. collections中可命名元组和队列
  5. Objective-C 链式语法的实现
  6. html与js传json值给php
  7. Linux UGO
  8. hdu 5927 Auxiliary Set 贪心
  9. Data truncated for column xxx
  10. MultiCardMenu
  11. Attribute的一个列子
  12. Linux中查看是否是固态硬盘(SSD)
  13. java基础练习 8
  14. 201521123067 《Java程序设计》第13周学习总结
  15. mysql 手册关于修改列字符编码的一个bug
  16. XMPP协议之消息回执解决方案
  17. spring(spring mvc)整合WebSocket案例(获取请求参数)
  18. django(一)验证码
  19. js 报错检查顺序
  20. 使用PDFminer3k解析pdf为文字遇到:WARING:root:GBK-EUC-H

热门文章

  1. 【php设计模式】组合模式
  2. MongoDB divide 使用之mongotempalte divide
  3. SuperMap iClient3D for WebGL 9D怎么将s3m图层的纹理变更精细些
  4. 蓝牙RSSI转距离计算工具
  5. c#客户端自动更新模块
  6. python subprocess popen 静默模式(不弹出console控制台)
  7. 如何在SpringBoot的 过滤器之中注入Bean对象
  8. node监听80端口权限问题
  9. vue store获取值时 Computed property &quot;activeTag&quot; was assigned to but it has no setter.
  10. 回顾了下shell 编程的一些细节