1. 程式人生 > >Mybatis中 collection的用法

Mybatis中 collection的用法

一、collection作為<foreach>的屬性使用的三種情況

1、當要DAO層的方法引數是一個數組時,mapper.xml的parameter則為陣列的型別,然後使用<foreach>標籤進行遍歷,collection屬性值為"array"。  例如:public void deletes(Integer[] ids);(DAO層方法)    則對應的:

<delete id="deleteBrands" parameterType="Integer">

        <foreach collection="array"  item="id" >........

</delete>

2、當DAO層的方法引數是一個列表時,mapper.xml的parameter則為列表中泛型的型別,<foreach>標籤的collection屬性值為list,比如:public void deletes(List<Customer>  customers);(DAO層方法)

<delete id="deleteBrands" parameterType="ArrayList">

        <foreach collection="list"  item="c" >........

</delete>

3、當DAO層的方法引數是一個HashMap或者包裝型別的POJO,要使用<foreach>標籤的話,遵循OGNL原則,collection的屬性值為HashMap的key或者POJO的屬性。

二、collection作為標籤和association的區別

不多說,直接見用例就能明白:

<!-- 定義resultMap 一對一查詢 -->
    <resultMap id="Orders_User" type="cn.itcast.mybatis.po.Orders">
        <!-- 主表的列和主pojo的屬性的對映 -->
        <id column="id" property="id"/>
        <result column="user_id" property="userId"/>
        <result column="number" property="number"/>
        <result column="createtime" property="createTime"/>
        <result column="note" property="note"/>
        
        <!-- association 用於對映關聯查詢單個物件的資訊 
        property:要將關聯查詢的關聯pojo對映到主pojo的相應屬性
        -->
        <association property="user" javaType="cn.itcast.mybatis.po.User">
            <!-- 關聯表的列和關聯pojo中屬性的 對映-->
            <id column="user_id" property="id"/>  
            <result column="username" property="userName"/> 
            <result column="sex" property="sex"/> 
            <result column="address" property="address"/> 
        </association>        
    </resultMap>

<!-- 定義resultMap 一對多查詢 -->
    <resultMap id="Orders_User_OrderDetail" type="Orders" extends="Orders_User">
        <!-- 訂單資訊對映 -->
        <!-- 使用者資訊對映 -->
        <!-- 由於這裡用了繼承 ,所以不用再配置-->
        
        <!-- 訂單明細資訊
        一個訂單關聯查詢出了多條明細,要使用collection進行對映
        property:主pojo中的集合屬性
        ofType:集合屬性中的pojo型別
         -->
        <collection property="orderDetails" ofType="OrderDetail" >
            <id column="orderdetail_id" property="id"/>
            <result column="items_id" property="itemsId"/>
            <result column="items_num" property="itemsNum"/>
            <result column="orders_id" property="ordersId"/>
        </collection>
    </resultMap>

ps:當bean中的屬性不是基本型別和String時,一般都需要在宣告屬性的同時初始化,否則容易拋空指標異常。