继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

Mybatis Generator 逆向工程

shanghai_kunkka
关注TA
已关注
手记 4
粉丝 5
获赞 187

之前为了锻炼自己的SQL语句的能力在使用Mybatis时都是自己书写Mapper.xml等相关文件,现在开发工作越来越多,必须使用自动化生成工具来生成一部分代码,从而加快开发的效率。
使用Mybatis generator有几种方法。这次使用的是java代码加XML配置的方式。
1、从github中下载Mybatis generator需要的jar包。mybatis-generator-core-1.3.2-bundle
我是在使用代理的情况下打开的github,如何打不开去我群里问吧【软件开发技术交流】:
下载的压缩包中有你需要的jar包,里面还有相关的文档。不过是英文的,知道英文的重要性了吧。
2、按照文档中给的例子操作。下面给出关于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="mysql-connector-java-5.0.6-bin.jar"/>  
        <context id="DB2Tables"  targetRuntime="MyBatis3">  
            <commentGenerator>  
                <property name="suppressDate" value="true"/>  
                <!-- 是否去除自动生成的注释 true:是 : false:否 -->  
                <property name="suppressAllComments" value="true"/>  
            </commentGenerator>  
            <!--数据库链接URL,用户名、密码 -->  
            <jdbcConnection driverClass="com.mysql.jdbc.Driver" connectionURL="jdbc:mysql://localhost/test" userId="test" password="test">  
            </jdbcConnection>  
            <javaTypeResolver>  
                <property name="forceBigDecimals" value="false"/>  
            </javaTypeResolver>  
            <!-- 生成模型的包名和位置-->  
            <javaModelGenerator targetPackage="test.model" targetProject="src">  
                <property name="enableSubPackages" value="true"/>  
                <property name="trimStrings" value="true"/>  
            </javaModelGenerator>  
            <!-- 生成映射文件的包名和位置-->  
            <sqlMapGenerator targetPackage="test.mapping" targetProject="src">  
                <property name="enableSubPackages" value="true"/>  
            </sqlMapGenerator>  
            <!-- 生成DAO的包名和位置-->  
            <javaClientGenerator type="XMLMAPPER" targetPackage="test.dao" targetProject="src">  
                <property name="enableSubPackages" value="true"/>  
            </javaClientGenerator>  
            <!-- 要生成哪些表-->  
            <table tableName="about" domainObjectName="AboutDto" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>  
            <table tableName="user" domainObjectName="UserDto" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>  
            <table tableName="syslogs" domainObjectName="SyslogsDto" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>  
        </context>  
    </generatorConfiguration>  
打开App,阅读手记
19人推荐
发表评论
随时随地看视频慕课网APP

热门评论

我是刚刚接触mybatis的,还不太了解,大家觉得这文档写的如何?


<table name="%"></table> 
<!-- 这种写法是所有表 -->


查看全部评论