Mybatis在Spring Boot上實現逆向工程(generator)

本篇文章講解的Mybatis generator在Spring Boot上的實現java

由於在一些小型企業,Mybatis相比Hibernate愈來愈流行,因此我以爲頗有必要寫一篇更加簡單易懂的文章,來教會你們如何在Spring Boot上整合Mybatis並使用它的逆向工程mysql

前提準備:
使用的工具:JDK1.八、IntelliJ IDEA、Mysql
首先:咱們來看一下基本的目錄結構:sql

clipboard.png

數據庫建立的表結構:數據庫

clipboard.png

maven依賴的包與插件(只貼出Mybatis相關包):mybatis

clipboard.png

maven插件依賴:app

clipboard.png

application.properties文件配置:dom

clipboard.png

generatorConfig.xml(逆向工程配置文件,若是使用maven插件啓動,請保持文件名一致)maven

<?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://localhost:3306/SSM?useUnicode=true&amp;characterEncoding=utf-8&amp;useSSL=false"
                        userId=    <!--填寫本身的-->
                        password=   <!--同上--> 
                        >
        </jdbcConnection>

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

        <!--指定javaBean生成的位置 javaBean生成的位置-->
        <javaModelGenerator targetPackage="cn.lxt.bean" targetProject="./src/main/java">
            <property name="enableSubPackages" value="true" />
            <property name="trimStrings" value="true" />
        </javaModelGenerator>

        <!--sql映射文件生成的位置-->
        <sqlMapGenerator targetPackage="mapper"  targetProject="./src/main/resources">
            <property name="enableSubPackages" value="true" />
        </sqlMapGenerator>

        <!--指定dao接口生成的位置-->
        <javaClientGenerator type="XMLMAPPER" targetPackage="cn.lxt.dao"  targetProject="./src/main/java">
            <property name="enableSubPackages" value="true" />
        </javaClientGenerator>

        <!--table是指定每一個表的生成策略-->
        <table tableName="user" domainObjectName="User"></table>

    </context>
</generatorConfiguration>

以上代碼以及配置將準備工做已完成
下面教你們如何使用IDEA啓動maven的插件工具

clipboard.png

啓動Edit Configuartions,在跳出界面中進行以下配置,-e更加方面咱們閱讀報錯的緣由spa

clipboard.png

設置插件完畢以後,就能夠啓動插件了

clipboard.png

運行以後,若是成功便會在指定位置(generatorConfig.xml中能夠配置,具體看註釋)生成響應的POJO類,dao接口,和mapper的.xml數據庫文件.

clipboard.png

固然若是你的電腦上許許多多的問題(平常)致使沒法使用maven插件,能夠在src/main/java文件夾下建立一個test類,寫下以下代碼:
注意new file("")中寫下本身的逆向配置文件路徑!

public class GeneratorTest {
    public static void main(String[] args)throws Exception {
        List<String> warnings = new ArrayList<String>();
        boolean overwrite = true;
        File configFile = new File("/Users/apple/Documents/Spring-Boot/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);
    }
}

而後單獨運行這個類也能自動生成代碼!
以上即是Mybatis基於Spring Boot的逆向工程實現
謝謝關注~記得點個贊再走哦

相關文章
相關標籤/搜索