Mybatis反向工程详细步骤

Posted 黑骑士-

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mybatis反向工程详细步骤相关的知识,希望对你有一定的参考价值。

步骤1:先下载generator-master环境包 将其目录下eclipse/UpdateSite下的两个文件夹复制到MyEclipse根目录下,并且导入下图的两个jar包(此处的2个jar包需要add to Build Path操作一下)需要重启MyEclipse才可以生效。

 

步骤2:选中需要操作的项目右键New→Other出现下图界面,搜索Mybatis会出现已经添加成功的插件选中后,完成

步骤3:在项目中会出现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 >
  <context id="context1" >
    <!-- 连接数据库基础信息 --> 
    <jdbcConnection driverClass="com.mysql.jdbc.Driver" connectionURL="jdbc:mysql://127.0.0.1:3307/registered" userId="root" password="root" />
    <!--  配置实体类 -->
    <javaModelGenerator targetPackage="cn.registered.pojo" targetProject="registered" />
    <!-- 生成映射文件制定包 -->
    <sqlMapGenerator targetPackage="cn.registered.dao" targetProject="registered" />
    <!-- 指定dao层 -->
    <javaClientGenerator targetPackage="cn.registered.dao" targetProject="registered" type="XMLMAPPER" />
    <!-- 指定用户和对应数据库表 -->
    
    <table schema="root" tableName="questions" 
                        enableCountByExample="false" 
                        enableSelectByExample="false"
                        enableUpdateByExample="false"
                        enableDeleteByExample="false">
                        <generatedKey column="id" sqlStatement="mysql" identity="true"/>
    </table>
     <table schema="root" tableName="answers" 
                        enableCountByExample="false" 
                        enableSelectByExample="false"
                        enableUpdateByExample="false"
                        enableDeleteByExample="false">
                        <generatedKey column="id" sqlStatement="mysql" identity="true"/>
    </table>
  </context>
</generatorConfiguration>

配置好这个文件后呢,右键点击此配置文件,此时

点击Generate MyBatis/iBATIS Artifacts进行生成操作:

 

 此图为生成完的效果,OK,MyBatis反向工程就此结束。

 

以上是关于Mybatis反向工程详细步骤的主要内容,如果未能解决你的问题,请参考以下文章

mybatis反向工程

mybatis-generator反向工程数据库生成代码

mybatis-generator反向工程数据库生成代码

逆向工程-MyBatis代码生成器!

MyBatis学习笔记 —— MyBatis的逆向工程

mybatis 反向生成步骤