在ibatis的xml文件裏,咱們去寫sql語句,對應mapper類的方法,這些sql語句與控制檯上沒什麼兩樣,但在有些功能上須要注意,如where in
這種從數組裏查詢符合條件的集合裏,須要在xml裏進行特別的處理。sql
<update id="batchUpdate" parameterType="map"> update customer_info set status=#{status},appoint_time=#{appointTime} where customer_id in <foreach collection="customerIdArr" item="customerId" index="index" open="(" close=")" separator=","> #{customerId} </foreach> </update>
咱們能夠看到,在xml裏進行了foreach的遍歷,而外部參數是一個集合或者數組的對象,咱們在xml對它進行遍歷,仍是比較方便的。數組
技巧:在xml裏,parameterType是輸入參數類型,你能夠使用map對象來代替;而resultType是返回類型,若是你沒有定義DTO也能夠使用map代替,雖然map能夠讓咱們的代碼變簡潔,固然也有缺陷,就是會寫不少弱類型的屬性名。app