美文网首页
mabatis generator 快速实现dao,mappin

mabatis generator 快速实现dao,mappin

作者: 我弟是个程序员 | 来源:发表于2017-07-12 17:26 被阅读0次

    随着小型应用的不断流行,mabatis框架火的如日冲天,那么今天就来说说,如何利用eclipse,来迅速实现dao,mapping数据库隐射,pojo实体类的创建。

    首先,eclipse安装mabatis generator插件,

    没错就是它了,安装完成重启后。数据库里面建库建表,以及相关数据库驱动包mysql-connector-java-5.1.30.jar(我这里用的mysql数据库,不是该数据库的jar包不一样)是必要条件。看下必要的配置吧:

    <?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="H:\java\apache-maven-3.5.0\MavenRepository\maven_jar\mysql\mysql-connector-java\5.1.30\mysql-connector-java-5.1.30.jar" />
    
        <context id="MysqlTables" 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/mydb?characterEncoding=utf8"
                userId="root" password="123456">
            </jdbcConnection>
    
            <!--是否启用java.math.BigDecimal -->
            <javaTypeResolver>
                <property name="forceBigDecimals" value="false" />
            </javaTypeResolver>
    
            <!-- 生成模型的包名和位置 -->
            <javaModelGenerator targetPackage="com.df.test.pojo"
                targetProject="maven/src/main/java">
                <property name="enableSubPackages" value="true" />
                <property name="trimStrings" value="true" />
            </javaModelGenerator>
            <!-- 生成映射文件的包名和位置 -->
            <sqlMapGenerator targetPackage="com.df.test.mapping"
                targetProject="maven/src/main/java">
                <property name="enableSubPackages" value="true" />
            </sqlMapGenerator>
            <!-- 生成DAO的包名和位置 -->
            <javaClientGenerator type="XMLMAPPER"
                targetPackage="com.df.test.dao" targetProject="maven/src/main/java">
                <property name="enableSubPackages" value="true" />
            </javaClientGenerator>
    
            <!-- 要生成的表 tableName是数据库中的表名或视图名 domainObjectName是实体类名 -->
            <table tableName="customer" domainObjectName="Customer"
                enableCountByExample="false" enableUpdateByExample="false"
                enableDeleteByExample="false" enableSelectByExample="false"
                selectByExampleQueryId="false"></table>
        </context>
    
    </generatorConfiguration>    
    

    要说的代码都有解释,不明白的可以留言或是自行google哦~~~

    相关文章

      网友评论

          本文标题:mabatis generator 快速实现dao,mappin

          本文链接:https://www.haomeiwen.com/subject/uegbhxtx.html