您好,登錄后才能下訂單哦!
小編給大家分享一下Mybatis查詢條件包含List的示例分析,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
在mybatis中進行搜索時,有時候參數中包含了List,比如傳入參數:
public class FileRequest{ //文件類型 private Integer fileType; //狀態 private List<Status> statusList; } public class Status{ //注冊狀態 private Integer registerStatus; //會議狀態 private Integer meetingStatus }
<select id="findList" parameterType="FileRequest" resultMap="..."> select * from tableName where 1=1 <if test="fileType != null "> and file_type = #{fileType} </if> <if test="statusList != null "> and <foreach collection="statusList" index="index" item="item" open"(" separator="or" close=")"> <if test="item.registerStatus != null "> and register_status= #{item.registerStatus} </if> <if test="item.meetingStatus != null "> and meeting_status= #{item.meetingStatus } </if> </foreach> </if> </select>
Mybatis查詢條件帶List和其他類型字段(Integer,String,...).
select * from table where type=? and code in (?,?,?,?)
Mapper.java文件
List<BaseDictionary> selectByTypeAndCodes( @Param("codes") List<Integer> codes, @Param("type") Integer type); Mapper.xml.
注意其中<foreach collection="codes"中的collection的值要和你定義的List別名@Param(“codes”)一致,
而不是只有一個list參數時的<foreach collection="list"
<select id="selectByTypeAndCodes" resultMap="BaseResultMap"> select <include refid="Base_Column_List" /> from base_dictionary where type = #{type} AND code in <foreach collection="codes" index="index" item="item" open="(" separator="," close=")"> #{item} </foreach> AND show_enable=1 AND obj_status=1 ORDER BY sort </select>
執行結果:
BaseJdbcLogger.debug(BaseJdbcLogger.java:145)==> Preparing: select id, type, name, code, sort, show_enable, obj_remark, obj_status, obj_createdate, obj_createuser, obj_modifydate, obj_modifyuser from base_dictionary where type = ? AND code in ( ? , ? , ? ) AND show_enable=1 AND obj_status=1 ORDER BY sort
BaseJdbcLogger.debug(BaseJdbcLogger.java:145)==> Parameters: 34(Integer), 1(Integer), 2(Integer), 3(Integer)
BaseJdbcLogger.debug(BaseJdbcLogger.java:145)<== Total: 2
以上是“Mybatis查詢條件包含List的示例分析”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。