Mybatis foreach 請求引數是物件集合
需求 引數是物件集合
/** * 查詢對應客戶的聯絡人資訊 * @param qeury * @return */ public List<CustomerContactInfoList> getCustomerContactInfoList(List<CustomerContactInfoList> qeury);
對應實現
<select id="getCustomerContactInfoList" parameterType="java.util.List" resultType="com.zhongan.crm.dataobject.extend.CustomerContactInfoList"> select tci.name as "customerName", tcp.name as "name", tcp.phone as "phone" FROM t_customer_info tci join t_contact_person tcp ON tci.id=tcp.customer_info_id where 1=1 <if test="list!=null"> <foreach collection="list" item="item" index="index" open="and (" separator="or " close=")"> <if test="item.customerName!=null and ''!=item.customerName"> tci.name=#{item.customerName} </if> <if test="item.name!=null and ''!=item.name"> and tcp.name=#{item.name} </if> <if test="item.phone!=null and ''!=item.phone"> and tcp.phone=#{item.phone} </if> </foreach> </if> </select>
- foreach元素的屬性主要有 item,index,collection,open,separator,close。
- item表示集合中每一個元素進行迭代時的別名,
- index指定一個名字,用於表示在迭代過程中,每次迭代到的位置,
- open表示該語句以什麼開始,
- separator表示在每次進行迭代之間以什麼符號作為分隔符,
- close表示以什麼結束。
在使用foreach的時候最關鍵的也是最容易出錯的就是collection屬性,該屬性是必須指定的,但是在不同情況下,該屬性的值是不一樣的,主要有一下3種情況:
1.如果傳入的是單引數且引數型別是一個List的時候,collection屬性值為list
2.如果傳入的是單引數且引數型別是一個array陣列的時候,collection的屬性值為array
- 3.如果傳入的引數是多個的時候,我們就需要把它們封裝成一個Map或者Object。
相關文章
- 請求引數為物件,mybatis的sql寫法物件MyBatisSQL
- Postman傳送請求引數是Map格式的請求Postman
- 有趣的請求引數/請求頭
- JavaWeb基礎-Request物件接收表單請求引數JavaWeb物件
- Springboot請求引數解密Spring Boot解密
- SpringMVC請求引數解析SpringMVC
- 什麼是請求引數、表單引數、url引數、header引數、Cookie引數?一文講懂HeaderCookie
- java 請求HTTP返回json集合,物件處理方式JavaHTTPJSON物件
- Charles 修改請求(Request)引數
- 請求引數的傳遞
- fastapi 請求引數 校驗ASTAPI
- Mybatis傳入引數為List物件MyBatis物件
- mybatis sql foreach 引數的傳入的三種情況!!MyBatisSQL
- ajax中POST請求與引數(請求體)設定
- MyBatis中傳入引數為List集合的MyBatis
- 後臺接收Json請求引數相容陣列和單個物件JSON陣列物件
- postman 請求引數和 Spring Boot Controller 接受引數PostmanSpring BootController
- GOLANG Web請求引數驗證GolangWeb
- GET請求的引數丟失
- mybatis 的傳入引數如何既有物件又有單個引數MyBatis物件
- 表單請求獲取路由引數路由
- charles 打斷點修改請求引數斷點
- java傳送get請求帶引數Java
- 關於在request請求時,處理請求引數的問題
- MyBatis中foreach傳入引數為list、陣列、map的不同寫法MyBatis陣列
- JS forEach()第二個引數JS
- Thinkphp5基礎——10 請求引數PHP
- leaflet動態更改wms瓦片請求引數
- RestTemplate exchange GET POST請求傳引數DEMOREST
- SpringBoot Get 請求接收 Date 型別引數Spring Boot型別
- foreach 實現 MyBatis 遍歷集合與批量運算元據MyBatis
- SpringBoot使用Axios傳送請求,引數處理Spring BootiOS
- GET請求引數為中文時亂碼分析
- Blazor Server 發起HttpPost請求,但是多引數BlazorServerHTTP
- RESTFUL風格的URL請求及引數接收REST
- SpringBoot 攔截器獲取http請求引數Spring BootHTTP
- SpringMVC底層——請求引數處理流程描述SpringMVC
- 拙見--springMVC的controller接受的請求引數SpringMVCController