溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

MyBatis-Plus如何通過插件將數(shù)據(jù)庫(kù)表生成Entiry,Mapper.xml,Mapper.class

發(fā)布時(shí)間:2021-07-23 10:44:58 來源:億速云 閱讀:179 作者:小新 欄目:編程語(yǔ)言

這篇文章主要介紹MyBatis-Plus如何通過插件將數(shù)據(jù)庫(kù)表生成Entiry,Mapper.xml,Mapper.class,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

創(chuàng)建maven項(xiàng)目,修改pom.xml文件,如下:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>com.xxxx</groupId>
    <artifactId>parent-pom</artifactId>
    <version>1.0.0-SNAPSHOT</version>
  </parent>
  <groupId>com.xxxx</groupId>
  <artifactId>mapper-creator</artifactId>
  <version>1.0-SNAPSHOT</version>
  <properties>
    <configuration.outputDir>d:\demo-mapper-folder</configuration.outputDir>
    <dataSource.url>jdbc:mysql://192.168.18.140:8066/TESTDB?useUnicode=true&amp;characterEncoding=UTF-8</dataSource.url>
    <dataSource.username>root</dataSource.username>
    <dataSource.password>123456</dataSource.password>
    <packageInfo.parent>com.xxxx.demotwo</packageInfo.parent>
  </properties>
  <build>
    <plugins>
      <plugin>
        <groupId>com.baomidou</groupId>
        <artifactId>mybatisplus-maven-plugin</artifactId>
        <version>1.0</version>
        <configuration>
          <!-- 輸出目錄(默認(rèn)java.io.tmpdir) -->
          <outputDir>${configuration.outputDir}</outputDir>
          <!-- 是否覆蓋同名文件(默認(rèn)false) -->
          <fileOverride>true</fileOverride>
          <!-- mapper.xml 中添加二級(jí)緩存配置(默認(rèn)true) -->
          <enableCache>true</enableCache>
          <!-- 開發(fā)者名稱 -->
          <author>ZuoQuan Tu</author>
          <!-- 是否開啟 ActiveRecord 模式(默認(rèn)true) -->
          <activeRecord>false</activeRecord>
          <!-- 數(shù)據(jù)源配置,( **必配** ) -->
          <dataSource>
            <driverName>com.mysql.jdbc.Driver</driverName>
            <url>${dataSource.url}</url>
            <username>${dataSource.username}</username>
            <password>${dataSource.password}</password>
          </dataSource>
          <strategy>
            <!-- 字段生成策略,四種類型,從名稱就能看出來含義:
              nochange(默認(rèn)),
              underline_to_camel,(下劃線轉(zhuǎn)駝峰)
              remove_prefix,(去除第一個(gè)下劃線的前部分,后面保持不變)
              remove_prefix_and_camel(去除第一個(gè)下劃線的前部分,后面轉(zhuǎn)駝峰) -->
            <naming>underline_to_camel</naming>
            <!-- 表前綴 -->
            <!--<tablePrefix>bmd_</tablePrefix>-->
            <!--Entity中的ID生成策略(默認(rèn) id_worker)-->
            <idGenType>uuid</idGenType>
            <!--自定義超類-->
            <!--<superServiceClass>com.baomidou.base.BaseService</superServiceClass>-->
            <!-- 要包含的表 與exclude 二選一配置-->
            <!--<include>-->
            <!--<property>sec_user</property>-->
            <!--<property>table1</property>-->
            <!--</include>-->
            <!-- 要排除的表 -->
            <!--<exclude>-->
            <!--<property>schema_version</property>-->
            <!--</exclude>-->
          </strategy>
          <packageInfo>
            <!-- 父級(jí)包名稱,如果不寫,下面的service等就需要寫全包名(默認(rèn)com.baomidou) -->
            <parent>${packageInfo.parent}</parent>
            <!--service包名(默認(rèn)service)-->
            <service>service</service>
            <!--serviceImpl包名(默認(rèn)service.impl)-->
            <serviceImpl>service.impl</serviceImpl>
            <!--entity包名(默認(rèn)entity)-->
            <entity>entity</entity>
            <!--mapper包名(默認(rèn)mapper)-->
            <mapper>mapper</mapper>
            <!--xml包名(默認(rèn)mapper.xml)-->
            <xml>mapper</xml>
          </packageInfo>
          <template>
            <!-- 定義controller模板的路徑 -->
            <!--<controller>/template/controller1.java.vm</controller>-->
          </template>
        </configuration>
        <dependencies>
          <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>${mysql.version}</version>
          </dependency>
        </dependencies>
      </plugin>
    </plugins>
  </build>
</project>

項(xiàng)目運(yùn)行步驟

A、修改pom.xml中的properties中的各各參數(shù)的值,以適應(yīng)自己項(xiàng)目中的配置

B、在maven的setting.xml中添加:

<pluginGroups>
  <pluginGroup>com.baomidou</pluginGroup>
</pluginGroups>

C、執(zhí)行以下maven命令:

mvn mp:code

執(zhí)行完成之后,即可看到彈出一個(gè)文件夾,里面包含了要生成的表的Entity,mapper,mapper.xml等

以上是“MyBatis-Plus如何通過插件將數(shù)據(jù)庫(kù)表生成Entiry,Mapper.xml,Mapper.class”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI