cmd 命令 Mybatis的逆向工程

cmd 命令 Mybatis的逆向工程,8.0版本

mysql 版本:8.0.18
末尾有其他版本修改方法
cmd 命令 Mybatis的逆向工程_第1张图片
congfig.xml 文件配置需要注意的地方:
cmd 命令 Mybatis的逆向工程_第2张图片

<?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="E:\mybatise-generator\mybatise\mysql-connector-java-8.0.18.jar" />

    <context id="sqlGenerate" targetRuntime="MyBatis3">
        <!-- 是否去除自动生成的注释 true:是 : false:-->
        <commentGenerator>
            <property name="suppressAllComments" value="true" />
        </commentGenerator>

        <!-- 数据库链接URL、用户名、密码 -->
        <jdbcConnection driverClass="com.mysql.cj.jdbc.Driver"
            connectionURL="jdbc:mysql://127.0.0.1:3306/mytest?useUnicode=true&characterEncoding=utf-8&serverTimezone=GMT&nullCatalogMeansCurrent=true"
            userId="数据库账号" password="数据库密码">
		<!--	<property name="nullCatalogMeansCurrent" value="true" /> -->
        </jdbcConnection>

         <!-- 默认false,把JDBC DECIMALNUMERIC 类型解析为 Integer;true时把JDBC DECIMALNUMERIC类型解析为java.math.BigDecimal -->
        <javaTypeResolver>
            <property name="forceBigDecimals" value="false" />
        </javaTypeResolver>

        <!-- 生成Pojo包名和位置 -->
        <javaModelGenerator targetPackage="fun.codefarmer.pojo"
            targetProject="E:\mybatise-generator\mybatise\src">
            <!-- enableSubPackages:是否让schema作为包的后缀 -->
            <property name="enableSubPackages" value="true" />
            <!-- 清理前后的空格 -->
            <property name="trimStrings" value="true" />
        </javaModelGenerator>

        <!-- 生成Mapper映射XML文件位置 -->
        <sqlMapGenerator targetPackage="fun.codefarmer.mapper"
            targetProject="E:\mybatise-generator\mybatise\src">
            <property name="enableSubPackages" value="true" />
        </sqlMapGenerator>

        <!-- 生成Mapper接口文件位置 -->
        <javaClientGenerator type="XMLMAPPER"
            targetPackage="fun.codefarmer.mapper" targetProject="E:\mybatise-generator\mybatise\src">
            <property name="enableSubPackages" value="true" />
        </javaClientGenerator>

        <!-- 要生成哪些表(更改tableName和domainObjectName就可以) -->
        <!-- tableName:要生成的表名
        domainObjectName:生成后的实例名
        enableCountByExample:Count语句中加入where条件查询,默认为true开启
        enableUpdateByExample:Update语句中加入where条件查询,默认为true开启
        enableDeleteByExample:Delete语句中加入where条件查询,默认为true开启
        enableSelectByExample:Select多条语句中加入where条件查询,默认为true开启
        selectByExampleQueryId:Select单个对象语句中加入where条件查询,默认为true开启
        -->
        <table tableName="user" domainObjectName="User"
            enableCountByExample="false" enableUpdateByExample="false"
            enableDeleteByExample="false" enableSelectByExample="false"
            selectByExampleQueryId="false" />
       	
    </context>
</generatorConfiguration>

一切准备就绪cmd 执行命令:java -jar mybatis-generator-core-1.3.2.jar -configfile config.xml -overwrite
cmd 命令 Mybatis的逆向工程_第3张图片
cmd 命令 Mybatis的逆向工程_第4张图片
cmd 命令 Mybatis的逆向工程_第5张图片
ok 生成!
注意:如果使用下载下来的压缩包,解压后,一定要注意修改config.xml中的路径配置,

可直接下载mybatis-generator:https://pan.baidu.com/s/11gMzzyvuohpG5VEZkX-Zaw
提取码:关注微信公众号,发送 提取码。
cmd 命令 Mybatis的逆向工程_第6张图片
其他版本数据库解决办法
其实非常简单,我以idea为例:
随便找到一个maven项目,有数据连接的。依然以我8.0.18版本为例
cmd 命令 Mybatis的逆向工程_第7张图片
cmd 命令 Mybatis的逆向工程_第8张图片
选中里面jar包:鼠标右键 选择 show in explorer 如下图:
cmd 命令 Mybatis的逆向工程_第9张图片
会直接定位到jar包位置 如下:
cmd 命令 Mybatis的逆向工程_第10张图片
将jar包复制出来。替换下载的 文件中mysql-connector-java 名称的包。然后修改config.xml未见路径。
广杰天下英雄豪杰! 如有疑问欢迎留言,

你可能感兴趣的:(java)