mybatis中一對一關係映射

来源:https://www.cnblogs.com/Magic-Li/archive/2019/10/17/11688270.html
-Advertisement-
Play Games

一對一關係中普通的配置方式 一.多表連接查詢語句: 1. 把所有的查詢結果,在一個resultMap中映射 2.使用【嵌套結果】ResultMap,實現一對一關係映射(就是說在一個resultMap中映射部分欄位,在另一個映射結果中關聯) 註:<association>是關聯的意思,常被用來表示(h ...


一對一關係中普通的配置方式

一.多表連接查詢語句:

<select id="selectStudentWithAddress" parameterType="int"
resultMap="StudentWithAddressResult">
select 
s.stud_id, s.name, s.email,s.dob,s.phone,
a.addr_id, a.street, a.city, a.state, a.zip,a.country
from 
students s left outer join addresses a
on 
s.addr_id=a.addr_id
where 
stud_id=#{id}
</select> 

 

1. 把所有的查詢結果,在一個resultMap中映射

<resultMap type="Student" id="StudentWithAddressResult">
<id property="studId" column="stud_id" />
<result property="name" column="name" />
<result property="email" column="email" />
<result property="phone" column="phone" />
<!--adderss是Student的內置對象-->
<result property="address.addrId" column="addr_id" />
<result property="address.street" column="street" />
<result property="address.city" column="city" />
<result property="address.state" column="state" />
<result property="address.zip" column="zip" />
<result property="address.country" column="country" />
</resultMap> 

 

2.使用【嵌套結果】ResultMap,實現一對一關係映射(就是說在一個resultMap中映射部分欄位,在另一個映射結果中關聯)

<resultMap type="Address" id="AddressResult"> 
<id property="addrId" column="addr_id" /> 
<result property="street" column="street" /> 
<result property="city" column="city" /> 
<result property="state" column="state" /> 
<result property="zip" column="zip" /> 
<result property="country" column="country" /> 
</resultMap>    

 

註:<association>是關聯的意思,常被用來表示(has-one)類型的關聯。就是對象1裡面關聯另一個對象2

<resultMap type="Student" id="StudentWithAddressResult"> 
<id property="studId" column="stud_id" /> 
<result property="name" column="name" /> 
<result property="email" column="email" /> 
<result property="dob" column="dob" /> 
<result property="phone" column="phone" />
<association property="address" resultMap="AddressResult" /> 
</resultMap> 

 

3.定義【內聯】的resultMap 

<resultMap type="Student" id="StudentWithAddressResult"> 
<id property="studId" column="stud_id" /> 
<result property="name" column="name" /> 
<result property="email" column="email" /> 
<association property="address" javaType="Address"> 
  <id property="addrId" column="addr_id" /> 
  <result property="street" column="street" /> 
  <result property="city" column="city" /> 
  <result property="state" column="state" /> 
  <result property="zip" column="zip" /> 
  <result property="country" column="country" /> 
</association> 
</resultMap>

 

二.嵌套查詢語句select,實現一對一關係映射

在一個映射結果中,嵌套了另一個select語句 

<resultMap type="Address" id="AddressResult">
<id property="addrId" column="addr_id" />
<result property="street" column="street" />
<result property="city" column="city" />
<result property="state" column="state" />
<result property="zip" column="zip" />
<result property="country" column="country" />
</resultMap>

獨立的select查詢,專門查詢Address

<select id="findAddressById" parameterType="int"
resultMap="AddressResult">
select * from addresses
where addr_id=#{id}
</select>

Student封裝映射,裡面關聯了查詢address使用的select語句,並指定資料庫表中的這個關聯的外鍵列的名字,這裡是addr_id

<resultMap type="Student" id="StudentWithAddressResult">
<id property="studId" column="stud_id" />
<result property="name" column="name" />
<result property="email" column="email" />
<result property="dob" column="dob" />
<result property="phone" column="phone" />
<!--第一條sql語句查出的addr_id值當作參數傳給findAddressById,然後封裝個Address對象傳給address-->
<!--相當於將AddressResult結果集映射進來封裝成一個Address類型的對象,傳給Student類型中的address屬性-->
<!-- property="address" 這是類中的屬性 將column="addr_id"的值傳給select="findAddressById" 這個語句,返回address對應的結果集-->
<association property="address" column="addr_id"
select="findAddressById" />
</resultMap>

 

查詢Student的select語句,這裡不用寫多表查詢,因為對於address的關聯查詢,已經在上邊定義好了,並且在結果映射中關聯進來了

<select id="selectStudentWithAddress" parameterType="int"
resultMap="StudentWithAddressResult">
select * from students
where stud_id=#{id}
</select> 

 

三.實現插入功能,要註意ADDRESSES表中的ADDR_ID欄位在STUDENTS表中做主鍵

<insert id="insertStudent" parameterType="Student"> 
<selectKey keyProperty="studId" resultType="int" order="BEFORE">
select my_seq.nextval from dual
</selectKey>
INSERT INTO
STUDENTS(STUD_ID,NAME,EMAIL,DOB,PHONE,ADDR_ID) 
<!-- 這裡註意,使用以下的順序調用,才可以使最後的ADDR_ID有值-->
<!-- mapper.insertAddress(address);
<!--在這裡調用這個方法後address對象就會利用序列自動生成主鍵addrId,並且保存到address對象中-->
mapper.insertStudent(stu);
sqlSession.commit(); 
-->
VALUES(#{studId},#{name},#{email},#{dob},#{phone},#{address.addrId})
<!-- 如果是對象自己取自己的值用作插入或判斷條件,不可以寫#{this.屬性} 應當直接寫#{屬性} -->
</insert>

<insert id="insertAddress" parameterType="Address"> 
<selectKey keyProperty="addrId" resultType="int" order="BEFORE">
select my_seq.nextval from dual
</selectKey>
INSERT INTO
ADDRESSES(ADDR_ID,STREET,CITY,STATE,ZIP,COUNTRY) 
VALUES(#{addrId},#{street},#{city},#{state},#{zip},#{country})
</insert>

 


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

-Advertisement-
Play Games
更多相關文章
  • 場景 SpringCloud-服務註冊與實現-Eureka創建服務註冊中心(附源碼下載): https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/102535957 SpringCloud-服務註冊與實現-Eureka創建服務提供者(附源 ...
  • 簡單工廠模式 簡單工廠模式分為三種:普通簡單工廠、多方法簡單工廠、靜態方法簡單工廠。 普通工廠模式 最近看了老酒館電視劇,深深被陳懷海他們的情懷所感動,當然裡面也有很多的酒,比如扳倒井,悶倒驢,跑舌頭,吹破天,二閨女,枕頭親。我們以酒為例: 創建酒的介面: public interface Liqu ...
  • 官網:www.fhadmin.org 此項目為Springboot工作流版本 windows 風格,瀏覽器訪問操作使用,非桌面應用程式。 1.代碼生成器: [正反雙向](單表、主表、明細表、樹形表,快速開發利器) freemaker模版技術 ,0個代碼不用寫,生成完整的一個模塊,帶頁面、建表sql腳 ...
  • 前言 今天我們來看策略模式【Stragety Pattern【行為型】】,這個模式還是比較好理解的。策略怎麼理解呢?一般是指:1. 可以實現目標的方案集合;2. 根據形勢發展而制定的行動方針和鬥爭方法;3. 有鬥爭藝術,能註意方式方法。總的來說呢就是針對一個目的的不同的方法集合。這裡要講的策略模式怎 ...
  • 單例模式 什麼是單例? 應用場景 代碼實現 餓漢式 中國古代神話中有女媧補天一說,現在天破了,我們去求女媧補天。 女媧用英語來說是 A Goddess In Chinese Mythology,意思就是神話中的女神,女媧是獨一無二的,現在我們就建一個女神類Goddess。 神話中,我們都是女媧造出來 ...
  • 作者:謝偉潔3117004673 一、Github項目地址: https://github.com/jack-xie460/mytest.git 二、PSP表格 PSP2.1 Personal Software Process Stages 預估耗時(分鐘) 實際耗時(分鐘) Planning 計劃 ...
  • 一、this關鍵字 1.this在多數情況下都會省略 2.this不能用在含有static的方法之中。 3.static的方法的調用是不需要對象的,直接使用格式:類名.方法名;沒有當前對象,自然不能訪問當前對象的name。 4.在static方法之中不能直接訪問實例變數和實例方法,因為實例方法和實例 ...
  • 項目開發中經常需要執行一些定時任務,比如在每天凌晨,需要從 implala 資料庫拉取產品功能活躍數據,分析處理後存入到 MySQL 資料庫中。類似這樣的需求還有許多,那麼怎麼去實現定時任務呢,有以下幾種實現方式。 Java 定時任務的幾種實現方式 基於 java.util.Timer 定時器,實現 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...