首頁 > Java > java教程 > MyBatis Generator配置詳解與使用指南

MyBatis Generator配置詳解與使用指南

PHPz
發布: 2024-02-23 08:51:03
原創
929 人瀏覽過

MyBatis Generator配置详解与使用指南

MyBatis Generator是一個強大的程式碼產生工具,可以幫助開發人員自動產生與資料庫表對應的Java Bean、Mapper介面和XML檔案。本文將詳細介紹如何設定和使用MyBatis Generator,並提供具體的程式碼範例,幫助讀者快速上手工具。

一、設定MyBatis Generator

  1. 在專案的pom.xml檔案中加入MyBatis Generator依賴:

    <dependency>
     <groupId>org.mybatis.generator</groupId>
     <artifactId>mybatis-generator-core</artifactId>
     <version>1.4.0</version>
    </dependency>
    登入後複製
  2. #創建MyBatis Generator的設定檔(generatorConfig.xml),設定產生規則、資料庫連線資訊等內容:

    <?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="MyBatisGenerator" targetRuntime="MyBatis3">
         <commentGenerator>
             <property name="suppressDate" value="true"/>
             <property name="suppressAllComments" value="true"/>
         </commentGenerator>
    
         <jdbcConnection driverClass="com.mysql.jdbc.Driver"
                         connectionURL="jdbc:mysql://localhost:3306/test"
                         userId="root"
                         password="password"/>
         
         <javaModelGenerator targetPackage="com.example.model"
                             targetProject="src/main/java"/>
    
         <sqlMapGenerator targetPackage="mapper"
                           targetProject="src/main/resources"/>
    
         <javaClientGenerator type="XMLMAPPER"
                               targetPackage="com.example.mapper"
                               targetProject="src/main/java"/>
    
         <table tableName="user" domainObjectName="User"/>
    
     </context>
    </generatorConfiguration>
    登入後複製
  3. 設定Maven插件,執行MyBatis Generator:

    <plugin>
     <groupId>org.mybatis.generator</groupId>
     <artifactId>mybatis-generator-maven-plugin</artifactId>
     <version>1.4.0</version>
     <configuration>
         <configurationFile>src/main/resources/generatorConfig.xml</configurationFile>
         <overwrite>true</overwrite>
         <verbose>true</verbose>
     </configuration>
    </plugin>
    登入後複製

#二、使用MyBatis Generator

  1. 執行Maven外掛程式產生程式碼:
    在專案根目錄執行下列指令:

    mvn mybatis-generator:generate
    登入後複製
  2. 自動產生的檔案結構如下:
  3. src/main/java/com/example/model/User.java
  4. src/main/resources/mapper/UserMapper.xml
  5. # src/main/java/com/example/mapper/UserMapper.java
  6. ##使用產生的Mapper介面:

    // 自动注入生成的Mapper接口
    @Autowired
    private UserMapper userMapper;
    
    // 调用Mapper接口方法
    User user = new User();
    user.setId(1);
    user.setName("Test");
    userMapper.insert(user);
    登入後複製
透過上述設定和使用方法,開發人員可以快速產生並使用MyBatis對應的Java Bean、Mapper介面和XML文件,提高開發效率並降低重複勞動。希望本文對讀者理解和使用MyBatis Generator有幫助。

以上是MyBatis Generator配置詳解與使用指南的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板