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

溫馨提示×

溫馨提示×

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

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

MyBatis的parameterType傳入參數類型有哪些

發布時間:2021-09-29 10:49:56 來源:億速云 閱讀:675 作者:小新 欄目:開發技術

這篇文章給大家分享的是有關MyBatis的parameterType傳入參數類型有哪些的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

    MyBatis的parameterType傳入參數類型

    在mybatis映射接口的配置中,有select,insert,update,delete等元素都提到了parameterType的用法,parameterType為輸入參數,在配置的時候,配置相應的輸入參數類型即可。parameterType有基本數據類型和復雜的數據類型配置。

    1. MyBatis的傳入參數parameterType類型分兩種

    1. 1. 基本數據類型:int、string、long、Date;

    1. 2. 復雜數據類型:類(JavaBean、Integer等)和Map

    2. 如何獲取參數中的值

    2.1 基本數據類型:#{參數} 獲取參數中的值

    2.2 復雜數據類型:#{屬性名} ,map中則是#{key}

    3.案例

    3.1 傳入Long型

    mapper接口代碼:

    public User findUserById(Long id);

    xml代碼:

    <select id="findUserById" parameterType="java.lang.Long" resultType="User">    
            select * from user where  id = #{id};    
    </select>

    3.2 傳入List

    mapper接口代碼:

    public List<User> findUserListByIdList(List<Long> idList);

    xml代碼:

    <select id="findUserListByIdList" parameterType="java.util.ArrayList" resultType="User">    
        select * from user user    
        <where>    
            user.ID in (    
              <foreach collection="list"  item="id" index="index" separator=",">   
                 #{id}   
              </foreach>    
            )    
        </where>    
    </select>

    在使用foreach的時候最關鍵的也是最容易出錯的就是collection屬性。

    該屬性是必須指定的,但是在不同情況 下,該屬性的值是不一樣的,主要有一下3種情況:

    1. 如果傳入的是單參數且參數類型是一個List的時候,collection屬性值為list

    2. 如果傳入的是單參數且參數類型是一個array數組的時候,collection的屬性值為array

    3. 如果傳入的參數是多個的時候,我們就需要把它們封裝成一個Map了,當然單參數也可

    3.3 傳入數組:

    mapper接口代碼:

    public List<User> findUserListByIdList(int[] ids);

    xml代碼:

    <select id="findUserListByIdList" parameterType="java.util.HashList" resultType="User">    
        select * from user user    
        <where>    
            user.ID in (    
               <foreach collection="array"  item="id" index="index"  separator=",">   
                    #{id}   
               </foreach>    
            )    
        </where>    
    </select>

    3.4 傳入map

    mapper接口代碼:

    public boolean exists(Map<String, Object> map);

    xml代碼:

    <select id="exists" parameterType="java.util.HashMap" resultType="java.lang.Integer">    
            SELECT COUNT(*) FROM USER user    
            <where>    
                <if test="code != null">     
                    and user.CODE = #[code]     
                </if>    
                <if test="id != null">     
                    and user.ID = #{id}     
                </if>    
                <if test="idList !=null ">    
                    and user.ID in (    
                       <foreach collection="idList" item="id" index="index" separator=",">   
                            #{id}   
                       </foreach>    
                    )    
                </if>    
            </where>    
    </select>

    MAP中有list或array時,foreach中的collection必須是具體list或array的變量名。

    比如這里MAP含有一個名為idList的list,所以MAP中用idList取值,這點和單獨傳list或array時不太一樣。

    3.5傳入JAVA對象

    mapper接口代碼:

    public int findUserList(User user);

    xml代碼:

    <select id="findUserList" parameterType="User" resultType="java.lang.Integer">    
            SELECT COUNT(*) FROM USER user    
            <where>    
                <if test="code != null">     
                    and user.CODE = #[code]     
                </if>    
                <if test="id != null">     
                    and user.ID = #{id}     
                </if>    
                <if test="idList !=null ">    
                    and user.ID in (    
                        <foreach  collection="idList" item="id" index="index" separator=",">   
                             #{id}   
                        </foreach>    
                    )    
                </if>    
            </where>    
    </select>

    JAVA對象中有list或array時,foreach中的collection必須是具體list或array的變量名。

    比如這里User含有一個名為idList的list,所以User中用idList取值,這點和單獨傳list或array時不太一樣。

    3.6注解@Param

    例子1:

    注解單一屬性;這個類似于將參數重命名了一次

    mapper接口代碼:

    List<User> selectUserByTime(@Param(value="startdate")String startDate);

    xml代碼:

    <select id="selectUserByTime" resultType="User" parameterType="java.lang.String">    
        select * from t_user   
        where  create_time >= to_date(#{startdate,jdbcType=VARCHAR},'YYYY-MM-DD')  
    </select>

    例子2:

    注解javaBean

    mapper接口代碼:

    List<User> selectUserByTime(@Param(value="dateVO")DateVO dateVO);

    xml代碼:

    <select id="selectUserByTime" resultType="User" parameterType="DateVO">    
        select *  
        from t_user  
        where create_time >= to_date(#{dateVO.startDate,jdbcType=VARCHAR},'YYYY-MM-DD')   
              and create_time < to_date(#{dateVO.endDate,jdbcType=VARCHAR},'YYYY-MM-DD')   
     </select>

    mybatis 之parameterType="Long"

     <select id="selectByPrimaryKeyByArrayMemberId"  resultType="memberModel" parameterType="Long">
               select 
               <include refid="Base_Column_List"/>
                  from member m
               where
               m.IS_DELETE = 'N'
               and m.member_id IN
               <foreach item="item" index="index" collection="list" open="(" separator="," close=")">  
                 #{item,jdbcType=DECIMAL}  
            </foreach>
        </select>
    public ServiceMessage<List<Member>> selectByPrimaryKeyByArrayMemberId(
                List<Long> memberIds)
        {
            try
            {
                if (memberIds == null || memberIds.size()==0){
                    return super.returnParamsError("參數為空!");
                }
                List<Member> list = memberMapper
                .selectByPrimaryKeyByArrayMemberId(memberIds);
                return super.returnCorrectResult(list);
            }
            catch (Throwable e)
            {
                return super.returnException(e);
            }
        }
    
        public ServiceMessage<List<Member>> selectByPrimaryKeyByArrayMemberId(List<Long> memberIds);
        List<Member> selectByPrimaryKeyByArrayMemberId(List<Long> memberIds);
        @Test
        public void testSelectByPrimaryKeyByArrayMemberId()
        {
            InternalMemberService internalMemberService = J1SOAHessianHelper.getService(url,InternalMemberService.class);
            List<Long> memberIds = new ArrayList<Long>();
            memberIds.add(1l);
            memberIds.add(2l);
            memberIds.add(1855l);
            ServiceMessage<List<Member>> sm = internalMemberService.selectByPrimaryKeyByArrayMemberId(memberIds);
            System.out.println(sm.getResult());
        }

    感謝各位的閱讀!關于“MyBatis的parameterType傳入參數類型有哪些”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

    向AI問一下細節

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

    AI

    聂拉木县| 台北县| 永济市| 镇江市| 资中县| 安西县| 锡林郭勒盟| 密山市| 临城县| 军事| 华坪县| 浏阳市| 全椒县| 黄骅市| 库尔勒市| 盈江县| 永定县| 黄陵县| 潢川县| 武山县| 江孜县| 库尔勒市| 宁波市| 黔西县| 左权县| 丽水市| 万盛区| 玛多县| 宁夏| 沂水县| 布拖县| 大理市| 类乌齐县| 阜康市| 资阳市| 黄龙县| 华坪县| 随州市| 吉林省| 保定市| 陆丰市|