mybatis-generator的使用

    Mybatis属于半自动ORM,在使用这个框架中,工作量最大的就是书写Mapping的映射文件,由于手动书写很容易出错,我们可以利用Mybatis-Generator来帮我们自动生成文件。

1.准备

首先,我们去下载工具类。https://github.com/mybatis/generator/releases
由于我使用的是mysql数据,所以我使用了mysql的相关jar。
mybatis-generator的使用_第1张图片

2.配置信息



<generatorConfiguration>
    
    <classPathEntry
        location="D:/repositories/mysql/mysql-connector-java/5.1.29/mysql-connector-java-5.1.29.jar" />

    <context id="DB2Tables" targetRuntime="MyBatis3">
        
        <commentGenerator>
            <property name="suppressAllComments" value="true" />
            <property name="suppressDate" value="true" />
        commentGenerator>

        
        <jdbcConnection driverClass="com.mysql.jdbc.Driver"
            connectionURL="jdbc:mysql://localhost:3315/rms" userId="test"
            password="test">
        jdbcConnection>
        
        <javaTypeResolver>
            <property name="forceBigDecimals" value="false" />
        javaTypeResolver>

        
        <javaModelGenerator targetPackage="com.jzq.rms.domain"
            targetProject="src">
            <property name="enableSubPackages" value="false" />
            <property name="trimStrings" value="true" />
        javaModelGenerator>
        
        <sqlMapGenerator targetPackage="mapping"
            targetProject="src">
            <property name="enableSubPackages" value="false" />
        sqlMapGenerator>
        
        <javaClientGenerator type="XMLMAPPER"
            targetPackage="com.jzq.rms.dao" targetProject="src">
            <property name="enableSubPackages" value="false" />
        javaClientGenerator>

        

        <table tableName="contact_sensitive_record" domainObjectName="ContactSensitiveRecord"
               enableCountByExample="false" enableDeleteByExample="fasle"
               enableSelectByExample="false" enableUpdateByExample="false"
               selectByExampleQueryId="fasle" />

    context>
generatorConfiguration>

上面配置文件中的:

<table tableName="message" domainObjectName="Messgae" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false">table>

    tableName和domainObjectName为必选项,分别代表数据库表名和生成的实力类名,其余的可以自定义去选择(一般情况下均为false)。

3.生成

    在该目录按住Shift键,右键鼠标选择”在此处打开命令窗口”,复制粘贴生成语句的文件代码即可。

生成语句:

java -jar mybatis-generator-core-1.3.2.jar -configfile generatorConfig.xml -overwrite

这样,我们就能成功地生成了service,mapper,dao以及domain类。

你可能感兴趣的:(java,mybatis)