91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

MyBatis?resultMap?id標簽的錯誤使用方式是什么

發布時間:2022-01-20 13:46:29 來源:億速云 閱讀:283 作者:柒染 欄目:開發技術

今天給大家介紹一下MyBatis resultMap id標簽的錯誤使用方式是什么。文章的內容小編覺得不錯,現在給大家分享一下,覺得有需要的朋友可以了解一下,希望對大家有所幫助,下面跟著小編的思路一起來閱讀吧。

MyBatis resultMap id標簽的錯誤使用

我們在編寫VO對象,如果業務場景稍微復雜一點,就會用到集合屬性。例如用戶查看個人訂單列表,每個訂單又包含多種或者多個規格的商品。

本節的問題主要是我對mybatis id標簽的錯誤使用

id是resultMap以及Collection的子標簽,標記出作為 ID 的結果可以幫助提高整體性能。特別注意的是,id是當前命名空間中的一個唯一標識,用于標識一個結果映射。

如下圖,itemId(商品id)字段值在數據庫中不唯一,錯誤使用會導致只返回該訂單某商品的一條記錄。因為對于某個商品,麻辣味和五香味只是商品規格,其商品id是相同的。

MyBatis?resultMap?id標簽的錯誤使用方式是什么

MyBatis?resultMap?id標簽的錯誤使用方式是什么

改用普通result標簽后,返回正確結果。

MyBatis?resultMap?id標簽的錯誤使用方式是什么

MyBatis?resultMap?id標簽的錯誤使用方式是什么

EOF

resultMap標簽的使用規則

自定義結果映射規則

<!-- resultMap自定義某個javabean的封裝規則
       type:自定義規則的java類型
       id:唯一id方便引用
     -->
    <resultMap type="entity.Employee" id="getEmpByIdMap">
       <!-- id指定主鍵列的封裝規則
           column:指定哪一列
           property:指定對應的javabean屬性
        -->
       <id column="id" property="id"/>
       <!-- result定義普通列封裝規則,若屬性名與數據庫對應表的列名相同可不寫,
            mybatis會自動封裝,但建議將所有的映射規則都寫上
       -->
       <result column="name" property="name"/>
       <result column="sex" property="sex"/>
       <result column="email" property="email"/>
    </resultMap>
    <!-- public Employee getEmpById(Integer id) -->
    <select id="getEmpById" resultMap="getEmpByIdMap">
       select * from employee where id=#{id}
    </select>

association聯合查詢

  • association可以指定聯合的javabean對象

  • property="dept":指定哪個屬性是聯合對象

  • javaType:指定這個屬性的類型

<resultMap type="entity.Employee" id="getEmpAndDeptMap">
       <id column="id" property="id"/>
       <result column="empName" property="name"/>
       <result column="sex" property="sex"/>
       <result column="email" property="email"/>
       <!-- association可以指定聯合的javabean對象
            property="dept":指定哪個屬性是聯合對象
            javaType:指定這個屬性的類型-->
       <association property="dept" javaType="entity.Department">
           <id column="did" property="id"/>
           <result column="deptName" property="departmentName"/>
       </association>
    </resultMap>
    <!-- public Employee getEmpAndDept(Integer id) -->
    <select id="getEmpAndDept" resultMap="getEmpAndDeptMap">
       select e.id id,e.name empName,e.email email,e.sex sex,e.d_id d_id,
           d.id did,d.name deptName from employee e,dept d
           where e.d_id=d.id and e.id=#{id}
    </select>

使用association進行分布查詢

 1、先按照員工id查詢員工信息將會調用查詢員工的sql

2、根據查詢員工信息中的d_id值去部門表中查出部門信息

3、部門設置到員工中

<resultMap type="entity.Employee" id="getEmpAndDeptStepMap">
       <id column="id" property="id"/>
       <result column="name" property="name"/>
       <result column="sex" property="sex"/>
       <result column="email" property="email"/>
       <!-- association定義關聯對象的封裝規則
            select:表明當前屬性是調用select指定的方法查出的結果
            column:指定將那一列的值作為參數傳給這個方法
             流程:使用select指定的方法(傳入column指定的這列參數的值)查出對象,
             并封裝給property指定的屬性
            -->
            <!-- discriminator鑒別器
                 column:指定判定的列名
                 javaType:列值對應的java類型
             -->
       <discriminator javaType="string" column="sex">
           <!-- resultType不能缺少 -->
           <case value="男" resultType="entity.Employee">
              <association property="dept" select="dao.DepartmentMapper.getDeptById"
                  column="d_id">
              </association>
           </case>
       </discriminator>
    </resultMap>
    <!-- public Employee getEmpByIdStep(Integer id) -->
    <select id="getEmpByIdStep" resultMap="getEmpAndDeptStepMap">
       select * from employee where id=#{id}
    </select>

嵌套結果集的方式,使用collection標簽定義關聯的集合類型的屬性封裝規則

<resultMap type="entity.Department" id="getDeptByIdPlusMap">
       <id column="did" property="id"/>
       <result column="deptName" property="departmentName"/>
       <!-- collection定義關聯集合類型的屬性的封裝規則
            ofType:指定集合里面元素的類型             
        -->
       <collection property="emps" ofType="entity.Employee">
           <!-- 定義這個集合中元素的封裝規則 -->
           <id column="eid" property="id"/>
           <result column="empName" property="name"/>
           <result column="sex" property="sex"/>
           <result column="email" property="email"/>
       </collection>
    </resultMap>
    <!-- public Department getDeptByIdPlus(Integer id) -->
    <select id="getDeptByIdPlus" resultMap="getDeptByIdPlusMap">
       select d.id did,d.name deptName,e.id eid,
           e.name empName,e.sex,e.email
           from dept d left join employee e
           on d.id=e.d_id
           where d.id=#{id}
    </select>

collection分步查詢

<resultMap type="entity.Department" id="getDeptByIdStepMap">
       <id column="id" property="id"/>
       <result column="name" property="departmentName"/>
       <collection property="emps" select="dao.EmployeeMapperPlus.getEmpsByDeptId"
           column="{id}">
      <!-- 或則 column="{deptId=id}"-->
       </collection>
    </resultMap>
   <!-- public List<Employee> getEmpsByDeptId(Integer deptId -->
   <select id="getEmpsByDeptId" resultType="entity.Employee">
       select * from employee where d_id=#{deptId}
    </select>
    <!-- public Department getDeptByIdStep(Integer id) -->
    <select id="getDeptByIdStep" resultMap="getDeptByIdStepMap">
       select * from dept where id=#{id}
    </select>

當分布查詢需要傳遞多個多個值時,將多個值封裝map傳遞

colum=“{key1=column1,key2=colum2...}”

以上就是MyBatis resultMap id標簽的錯誤使用方式是什么的全部內容了,更多與MyBatis resultMap id標簽的錯誤使用方式是什么相關的內容可以搜索億速云之前的文章或者瀏覽下面的文章進行學習哈!相信小編會給大家增添更多知識,希望大家能夠支持一下億速云!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

东兴市| 兴业县| 商洛市| 临桂县| 襄城县| 舟山市| 萝北县| 措美县| 昭觉县| 彭山县| 诸城市| 辉县市| 赫章县| 仙游县| 漾濞| 凤台县| 泾源县| 大安市| 岱山县| 永平县| 南投县| 青田县| 义乌市| 获嘉县| 德州市| 麻城市| 青冈县| 浦江县| 杭州市| 图们市| 绥中县| 皋兰县| 尼玛县| 丹阳市| 铜陵市| 页游| 浑源县| 昭通市| 嵊泗县| 阿合奇县| 宁武县|