mybatis中java自动化生成dao层简单实用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis中java自动化生成dao层简单实用相关的知识,希望对你有一定的参考价值。

<?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-commercial-5.1.25-bin.jar" />
    <context id="context1">
        <commentGenerator>
            <property name="suppressDate" value="true" />
            <property name="suppressAllComments" value="true"/>
        </commentGenerator>
        <jdbcConnection driverClass="com.mysql.jdbc.Driver"
            connectionURL="jdbc:mysql://192.168.47.196:3306/test"
            userId="root" password="123456">
        </jdbcConnection>
        <javaTypeResolver>
            <property name="forceBigDecimals" value="false" />
        </javaTypeResolver>
        <javaModelGenerator  targetPackage="cn.java.entity"
            targetProject="D:\TOOL\soft_java\dm" />
        <sqlMapGenerator targetPackage="cn.java.service"
            targetProject="D:\TOOL\soft_java\dm" />
        <javaClientGenerator targetPackage="cn.java.service.impl"
            targetProject="D:\TOOL\soft_java\dm" type="XMLMAPPER">
            <property name="enableSubPackages" value="true" />
        </javaClientGenerator>

        <table tableName="computers" domainObjectName="computers" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>

</context>

</generatorConfiguration>

技术分享图片

以上是关于mybatis中java自动化生成dao层简单实用的主要内容,如果未能解决你的问题,请参考以下文章

使用MyBatis Generator自动生成实体mapper和dao层

运行eclipse中怎样将mybatisgenerator.java里的自动生成bean文件

Mybatis Generator代码自动生成(实体类dao层映射文件)

spring boot集成mybatis 自动生成实体类和mapper文件Dao层

Mybatis Generator生成Mybatis Dao接口层*Mapper.xml以及对应实体类

Java MyBatis Generator使用generator自动生成Dao,Mapping和实体文件