踩坑記:在傳遞List<Integer> typeIds作為參數時,MyBatis foreach不能獲取到參數,使用Integer[] typeIds就可以了。
主要代碼:
1、接口
<!-- 獲取站點列表 -->
List<Station> getList(@Param("typeIds") Integer[] typeIds);
2、xml文件
<select id="getList" resultType="Station">
select id, `name`, lon, lat, city, county, town, is_native isNative, type, `describe`
from stations
where is_native in <foreach collection="typeIds" item="id" open="(" close=")" separator=",">#{id}</foreach>
</select>
路漫漫其修遠兮,吾將上下而求索
譯文:在追尋真理方面,前方的道路還很漫長,但我將百折不撓,不遺余力地去追求和探索。
如果您有什么好的想法與方法,歡迎在評論區留言,我們一起討論~