MyBatis----逆向工程

文章目录

概述

这个逆向工程就是mybatis根据数据库中的表,然后生成对应的实体类以及各种mapper。

能够方便我们的开发,配置好之后就会自动生成一些CRUD操作,基本上可以满足我们的各种需求。

另外就是官网也给到了如何去使用:传送门,配置文件以及怎么去调用都说明了。

配置

除了常规的一些依赖文件,还需要加入逆向工程的核心依赖

        <dependency>
            <groupId>org.mybatis.generator</groupId>
            <artifactId>mybatis-generator-core</artifactId>
            <version>1.4.0</version>
        </dependency>

然后加入配置文件,我这个就写上的常用的配置,具体每个属性有啥用,看官方文档吧。

需要注意的就是,如果成功运行了,但是没有文件生成,那就去看看是不是生成文件的包名,项目地址填错了。.\代表当前项目

<?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="DB2Tables" targetRuntime="MyBatis3">

        <commentGenerator>
            <!-- 去除注释-->
            <property name="suppressAllComments" value="true"/>
        </commentGenerator>
        
        <!-- 数据库连接配置-->
        <jdbcConnection driverClass="com.mysql.jdbc.Driver"
                        connectionURL="jdbc:mysql://127.0.0.1:3306/mybog"
                        userId="root"
                        password="root">
        </jdbcConnection>

        <javaTypeResolver >
            <property name="forceBigDecimals" value="false" />
        </javaTypeResolver>

        <!-- Java实体类的位置-->
        <javaModelGenerator targetPackage="com.devil.bean" targetProject=".\src\main\java">
            <property name="enableSubPackages" value="true" />
            <property name="trimStrings" value="true" />
        </javaModelGenerator>

        <!-- xml配置文件的位置-->
        <sqlMapGenerator targetPackage="com.devil.dao"  targetProject=".\src\main\resources">
            <property name="enableSubPackages" value="true" />
        </sqlMapGenerator>

        <!-- dao类的位置-->
        <javaClientGenerator type="XMLMAPPER" targetPackage="com.devil.dao"  targetProject=".\src\main\java">
            <property name="enableSubPackages" value="true" />
        </javaClientGenerator>



        <!-- 数据库表-->
        <table tableName="users" domainObjectName="User" enableCountByExample="false"
               enableUpdateByExample="false" enableDeleteByExample="false"
               enableSelectByExample="false" selectByExampleQueryId="false">
        </table>
        <table tableName="roles" domainObjectName="Role" enableCountByExample="false"
               enableUpdateByExample="false" enableDeleteByExample="false"
               enableSelectByExample="false" selectByExampleQueryId="false"/>
    </context>
</generatorConfiguration>

运行

通过运行生成代码,官方给了好多中方法,咱这就用最简单的,直接使用Java代码就行了。

这个就是官方给的东西,我只更改了配置文件的地址。

    @Test
    public void test() throws Exception{
        List<String> warnings = new ArrayList<String>();
        boolean overwrite = true;
        File configFile = new File("C:\\Users\\devil\\WorkSpace\\IdeaProjects\\Mybatis_demo\\Generator_Demo\\src\\main\\resources\\generatorConfig.xml");
        ConfigurationParser cp = new ConfigurationParser(warnings);
        Configuration config = cp.parseConfiguration(configFile);
        DefaultShellCallback callback = new DefaultShellCallback(overwrite);
        MyBatisGenerator myBatisGenerator = new MyBatisGenerator(config, callback, warnings);
        myBatisGenerator.generate(null);
    }
上一篇:python – Pylint – “使用全局语句”


下一篇:Java基础之反射、注解、代理