<返回更多

MyBatis 使用数组作为参数,这里藏着一个大坑

2022-02-23    编程课堂
加入收藏

踩坑记:在传递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>

 

路漫漫其修远兮,吾将上下而求索

译文:在追寻真理方面,前方的道路还很漫长,但我将百折不挠,不遗余力地去追求和探索。

 

如果您有什么好的想法与方法,欢迎在评论区留言,我们一起讨论~

声明:本站部分内容来自互联网,如有版权侵犯或其他问题请与我们联系,我们将立即删除或处理。
▍相关推荐
更多资讯 >>>