mybatis逆向生成工具

使用mybatis的逆向生成工具

可以直接通过一个项目进行生成
链接:https://pan.baidu.com/s/1h9sqPDcoM282pvuWKJZ8EA
提取码:vsgx

注意:如果没有生成XXXmapper.xml文件,需要在项目中的src --main下创建resource/mapper文件夹

在这个项目中的generatorConfig.xml文件中进行配置即可

下面的value中配置的值主要是要对应我们项目中文件夹的名字,这样我们在把生成的文件复制过去后,就不必更改包名了

<?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>
    <context id="MysqlContext" targetRuntime="MyBatis3Simple" defaultModelType="flat">
        <property name="beginningDelimiter" value="`"/>
        <property name="endingDelimiter" value="`"/>

        <!-- 通用mapper所在目录,我们需要在我们的项目下
        创建一个com.imooc.my.mapper.MyMapper来存放MyMapper
        即是将现在项目下的MyMapper类拷贝到我们的项目中-->
        <plugin type="tk.mybatis.mapper.generator.MapperPlugin">
            <property name="mappers" value="com.imooc.my.mapper.MyMapper"/>
        </plugin>
        <!--数据库的配置-->
        <jdbcConnection driverClass="com.mysql.jdbc.Driver"
                        connectionURL="jdbc:mysql://localhost:3306/foodie-shop-dev"
                        userId="root"
                        password="root">
        </jdbcConnection>

        <!-- 对应生成的pojo所在包 -->
        <javaModelGenerator targetPackage="com.imooc.pojo" targetProject="src/main/java"/>

		<!-- 对应生成的mapper所在目录 即是在resource文件夹下的创建的mapper-->
        <sqlMapGenerator targetPackage="mapper" targetProject="src/main/resources"/>

		<!-- 配置mapper对应的java映射 -->
        <javaClientGenerator targetPackage="com.imooc.mapper" targetProject="src/main/java" type="XMLMAPPER"/>

        <!-- 数据库表 ,将我们数据库中需要逆向生成的表名填在这里-->
		<table tableName="carousel"></table>
        <table tableName="category"></table>
        <table tableName="items"></table>
        <table tableName="items_comments"></table>
        <table tableName="items_img"></table>
        <table tableName="items_param"></table>
        <table tableName="items_spec"></table>
        <table tableName="order_items"></table>
        <table tableName="order_status"></table>
        <table tableName="orders"></table>
        <table tableName="stu"></table>
        <table tableName="user_address"></table>
        <table tableName="users"></table>

    </context>
</generatorConfiguration>

启动逆向生成,将生成的文件拷贝到我们的项目中
在这里插入图片描述
配置在pom.xml文件中,如果是聚合项目直接在父工程中pom.xml中进行配置

<!-- 通用mapper逆向工具 -->
<dependency>
    <groupId>tk.mybatis</groupId>
    <artifactId>mapper-spring-boot-starter</artifactId>
    <version>2.1.5</version>
</dependency>

在application.yml文件中拷入,如果是聚合项目,要拷贝到api的application.yml中

############################################################
#
# mybatis mapper 配置
#
############################################################
# 通用 Mapper 配置
mapper:
  mappers: com.imooc.my.mapper.MyMapper
  not-empty: false
  identity: MYSQL

注意事项

一定要将MyMapper类也拷入我们的项目中,然后将我们的项目install,然后进行启动

如果多次启动逆向生成这个项目,需要将之前生成的内容删除,因为生成的文件是追加式的,而不是覆盖式

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值