m'ybatis 一對一 一對多 配置詳解

来源:https://www.cnblogs.com/zhangheliang/archive/2019/02/18/10398431.html
-Advertisement-
Play Games

javabean: mapper.xml 代碼 圖文解釋: 測試: 結果: 22:47:17.005 [main] DEBUG org.apache.ibatis.logging.LogFactory - Logging initialized using 'class org.apache.iba ...


javabean:

package com.me.model;

import java.io.Serializable;
import java.util.Date;
import java.util.List;

public class User implements Serializable {  
      
    /**
     * 
     */
    private static final long serialVersionUID = 1L;
    private int id;  
    private String username;  
    private Date birthday;  
    private String sex;  
    private String address; 
    //一對一 放入對象
    private Morder morder;
    //一對多 放入對象集合
    private List<Home> homeList;
    
    
      
   
    public List<Home> getHomeList() {
        return homeList;
    }
    public void setHomeList(List<Home> homeList) {
        this.homeList = homeList;
    }
    public Morder getMorder() {
        return morder;
    }
    public void setMorder(Morder morder) {
        this.morder = morder;
    }
    public static long getSerialversionuid() {
        return serialVersionUID;
    }
    public int getId() {  
        return id;  
    }  
    public void setId(int id) {  
        this.id = id;  
    }  
    public String getUsername() {  
        return username;  
    }  
    public void setUsername(String username) {  
        this.username = username;  
    }  
    public Date getBirthday() {  
        return birthday;  
    }  
    public void setBirthday(Date birthday) {  
        this.birthday = birthday;  
    }  
    public String getSex() {  
        return sex;  
    }  
    public void setSex(String sex) {  
        this.sex = sex;  
    }  
    public String getAddress() {  
        return address;  
    }  
    public void setAddress(String address) {  
        this.address = address;  
    }
    @Override
    public String toString() {
        return "User [id=" + id + ", username=" + username + ", birthday="
                + birthday + ", sex=" + sex + ", address=" + address
                + ", morder=" + morder + ", homeList=" + homeList + "]";
    }
    
    
      
}  
package com.me.model;

public class Morder {
    
    private int orderId;
    private String orderName;
    private String orderMessage;
    public int getOrderId() {
        return orderId;
    }
    public void setOrderId(int orderId) {
        this.orderId = orderId;
    }
    public String getOrderName() {
        return orderName;
    }
    public void setOrderName(String orderName) {
        this.orderName = orderName;
    }
    public String getOrderMessage() {
        return orderMessage;
    }
    public void setOrderMessage(String orderMessage) {
        this.orderMessage = orderMessage;
    }
    
    

}
package com.me.model;

public class Home {
	
	private int homeId;
	private String homeName;
	public int getHomeId() {
		return homeId;
	}
	public void setHomeId(int homeId) {
		this.homeId = homeId;
	}
	public String getHomeName() {
		return homeName;
	}
	public void setHomeName(String homeName) {
		this.homeName = homeName;
	}
	
	

}

  mapper.xml 代碼

<!-- collection :collection屬性的值有三個分別是list、array、map三種, 分別對應的參數類型為:List、數組、map集合,我在上面傳的參數為數組,所以值為array 
        item : 表示在迭代過程中每一個元素的別名 index :表示在迭代過程中每次迭代到的位置(下標) open :首碼 close :尾碼 separator 
        :分隔符,表示迭代時每個元素之間以什麼分隔 -->
    <delete id="deleteSome">
        delete from user where id in
        <foreach collection="list" item="id" index="index" open="("
            close=")" separator=",">
            #{id}
        </foreach>
    </delete>
    
<!-- 關聯查詢 -->    
    <!-- 關聯查詢 1對1 -->
    <select id="selectGL" resultMap="userRsultMap">
        select * from user u,morder m
        WHERE u.oid=m.order_id
    </select>
    <resultMap type="com.me.model.User" id="userRsultMap">
        <id property="id" column="id" />
        <result column="username" property="username" />
        <result column="birthday" property="birthday" />
        <result column="sex" property="sex" />
        <result column="address" property="address" />

        <association property="morder" javaType="com.me.model.Morder">
            <id column="order_id" property="orderId" />
            <result column="order_name" property="orderName" />
            <result column="order_message" property="orderMessage" />
        </association>
    </resultMap>
    <!-- 關聯查詢 1對多 -->
    <select id="selectGL2" resultMap="userRsultMap2">
        select * from user u,home h where u.hid=h.home_id;    
    </select>
    <resultMap type="com.me.model.User" id="userRsultMap2">
        <id property="id" column="id" />
        <result column="username" property="username" />
        <result column="birthday" property="birthday" />
        <result column="sex" property="sex" />
        <result column="address" property="address" />

        <collection property="homeList" ofType="com.me.model.Home">
            <id property="homeId" column="home_id" />
            <result property="homeName" column="home_name" />
        </collection>
    </resultMap>

圖文解釋:

測試:

//關聯查詢 1 to 多
    @Test
    public void selectGL2(){
        try {
            inputStream = Resources.getResourceAsStream(resource);
            // 創建會話工廠,傳入MyBatis的配置文件信息
            SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder()
                    .build(inputStream);
            // 通過工廠得到SqlSession
            sqlSession = sqlSessionFactory.openSession();
            List<User> list = sqlSession.selectList("test.selectGL2");
            for (User u : list) {
                System.err.println(u.getHomeList().get(0).getHomeName());
            }

        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            // 釋放資源
            sqlSession.close();
        }
    }

結果:

22:47:17.005 [main] DEBUG org.apache.ibatis.logging.LogFactory - Logging initialized using 'class org.apache.ibatis.logging.slf4j.Slf4jImpl' adapter.
22:47:17.140 [main] DEBUG o.a.i.d.pooled.PooledDataSource - PooledDataSource forcefully closed/removed all connections.
22:47:17.140 [main] DEBUG o.a.i.d.pooled.PooledDataSource - PooledDataSource forcefully closed/removed all connections.
22:47:17.140 [main] DEBUG o.a.i.d.pooled.PooledDataSource - PooledDataSource forcefully closed/removed all connections.
22:47:17.140 [main] DEBUG o.a.i.d.pooled.PooledDataSource - PooledDataSource forcefully closed/removed all connections.
22:47:17.215 [main] DEBUG o.a.i.t.jdbc.JdbcTransaction - Opening JDBC Connection
22:47:17.420 [main] DEBUG o.a.i.d.pooled.PooledDataSource - Created connection 518522822.
22:47:17.420 [main] DEBUG o.a.i.t.jdbc.JdbcTransaction - Setting autocommit to false on JDBC Connection [com.mysql.jdbc.JDBC4Connection@1ee807c6]
22:47:17.421 [main] DEBUG test.selectGL2 - ==> Preparing: select * from user u,home h where u.hid=h.home_id;
22:47:17.444 [main] DEBUG test.selectGL2 - ==> Parameters:
22:47:17.461 [main] DEBUG test.selectGL2 - <== Total: 4
sasadasd
22:47:17.462 [main] DEBUG o.a.i.t.jdbc.JdbcTransaction - Resetting autocommit to true on JDBC Connection [com.mysql.jdbc.JDBC4Connection@1ee807c6]
22:47:17.462 [main] DEBUG o.a.i.t.jdbc.JdbcTransaction - Closing JDBC Connection [com.mysql.jdbc.JDBC4Connection@1ee807c6]
22:47:17.463 [main] DEBUG o.a.i.d.pooled.PooledDataSource - Returned connection 518522822 to pool.

 

更多可以參考:https://www.cnblogs.com/xdp-gacl/p/4264440.html


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 接上篇python 閉包&裝飾器(一) 一、功能函數加參數:實現一個可以接收任意數據的加法器 源代碼如下: def show_time(f): def inner(*x, **y): # 形參 start = time.time() f(*x, **y) # 相當於add() end = time.... ...
  • 虛擬機創建項目 pycharm創建項目 開啟項目 一、虛擬機創建項目 1. 創建虛擬環境 workon 查看虛擬環境 mkvirtualenv -p /usr/bin/python3.5 envname 創建虛擬環境 workon envname 進入虛擬環境 deactivate 退出虛擬環境 r ...
  • 給定一個整數數組和一個目標值,找出數組中和為目標值的兩個數。你可以假設每個輸入只對應一種答案,且同樣的元素不能被重覆利用。 示例: 給定 nums = [2, 7, 11, 15], target = 9 因為 nums[0] + nums[1] = 2 + 7 = 9 所以返回 [0, 1] 代碼 ...
  • 文件切分演算法 文件切分演算法主要用於確定InputSplit的個數以及每個InputSplit對應的數據段。 FileInputFormat以文件為單位切分成InputSplit。對於每個文件,由以下三個屬性值確定其對應的InputSplit的個數。 goalSize:根據用戶期望的InputSpli ...
  • 今天在使用正則表達式時未能解決實際問題,於是使用bs4庫完成匹配,通過反覆測試,最終解決了實際的問題,加深了對bs4.BeautifulSoup模塊的理解。 爬取流程 前奏: 分析糗事百科熱圖板塊的網址,因為要進行翻頁爬取內容,所以分析不同頁碼的網址信息是必要的 具體步驟: 1,獲取網頁內容(url ...
  • SpringMvc 中@RequestParam註解使用 建議使用包裝類型來代替基本數據類型 public String form2(@RequestParam(name="age") int age){ public String form2(@RequestParam(name="age") I ...
  • 一 軟體目錄結構規範 為什麼要設計好目錄結構? “設計項目目錄結構”,就和“代碼編碼風格”一樣,屬於個人風格問題。對於這種風格上的規範,一直都存在兩種態度。 1.第一種態度,這種個人風格問題“無關緊要”。理由是能讓程式跑起來就好,風格問題根本不是問題。 2.第二種態度,規範化能更好的控製程序結構,讓 ...
  • 運行環境: Django版本2.0 ; Mysql 版本 8.0.11; 錯誤代碼: django.db.utils.OperationalError: (1045:Access denied for user 'root'@'localhost' (using password: NO) 這個錯誤 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...