MyBatis属于一种半自动的ORM框架,所以主要的工作就是配置Mapping映射文件,但是由于手写映射文件很容易出错,所以可利用MyBatis生成器自动生成实体类、DAO接口和Mapper映射文件。
以下介绍用命令行式创建生成。
关于Mybatis-Generator的下载可以到这个地址:https://github.com/mybatis/generator/releases
使用相应的数据库,就要用对应的驱动jar。
如下所示:
上图上传了支持三种数据库的jar,分别是MySQL、Oracle及PostgreSQL。
以下以Oracle为例。
和Hibernate逆向生成一样,这里也需要一个配置文件:
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> <classPathEntry location="ojdbc6-11.1.0.7.0.jar"/> <context id="OracleTables" targetRuntime="MyBatis3"> <property name="javaFileEncoding" value="UTF-8"/> <plugin type="com.stone.PaginationPlugin" /> <plugin type="com.stone.FieldPlugin" /> <commentGenerator type="com.stone.MyCommentGenerator"> </commentGenerator> <!-- 配置连接数据信息 --> <jdbcConnection driverClass="oracle.jdbc.driver.OracleDriver" connectionURL="jdbc:oracle:thin:@localhost:1521:testdb" userId="test" password="test" > </jdbcConnection> <javaTypeResolver> <property name="forceBigDecimals" value="false"/> </javaTypeResolver> <javaModelGenerator targetPackage="com.unicompayment.mmp.activity.domain" targetProject="src"> <property name="enableSubPackages" value="true"/> <property name="trimStrings" value="true"/> </javaModelGenerator> <sqlMapGenerator targetPackage="mapping" targetProject="src"> <property name="enableSubPackages" value="true"/> </sqlMapGenerator> <javaClientGenerator type="XMLMAPPER" targetPackage="com.unicompayment.mmp.activity.dao" targetProject="src"> <property name="enableSubPackages" value="true"/> </javaClientGenerator> <table tableName="MARKET_EVENT_REVIEW" domainObjectName="MarketEventReview" enableCountByExample="true" enableUpdateByExample="true" enableDeleteByExample="true" enableSelectByExample="true" selectByExampleQueryId="true"> <columnOverride column="sheet_type" javaType="Byte"/> </table> <table tableName="MARKET_EVENT_RESULT" domainObjectName="MarketEventResult" enableCountByExample="true" enableUpdateByExample="true" enableDeleteByExample="true" enableSelectByExample="true" selectByExampleQueryId="true"> <columnOverride column="sheet_type" javaType="Byte"/> </table> <!--生成对应表及类名--> <table tableName="MARKET_EVENT" domainObjectName="MarketEvent" enableCountByExample="true" enableUpdateByExample="true" enableDeleteByExample="true" enableSelectByExample="true" selectByExampleQueryId="true"> <columnOverride column="sheet_type" javaType="Byte"/> </table> </context> </generatorConfiguration>其中tableName和domainObjectName为必选项,分别代表数据库表名和生成的实力类名,其余的可以自定义去选择(一般情况下均为false)。
生成语句文件:
java -jar mybatis-generator-core-1.3.2.jar -configfile generatorConfig1.xml -overwritecmd命令到对应目录下执行如上命令。