我是靠谱客的博主 微笑茉莉,最近开发中收集的这篇文章主要介绍mybatis传入array,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1.mapper.java中

List<MacTicket> selectByPrimaryKeyList(String[] stringArray);

mapper.xml中

<select id="selectByPrimaryKeyList" parameterType="int" resultMap="BaseResultMap">

<foreach collection="array" item="id" index="index" open="(" close=")" separator=",">

#{id,jdbcType=VARCHAR}

</foreach>

亲测,重点说下parameterType实际不写也可以,或者写其他的都行,但是collection="array"这个必须写,mapper.java中的String[]也必须写,如果mapper.java传入是对象时,对象中包含数组对象时,在mapper.xml中取值时通过collection=数组名类似map取值。

< if test="arrayName!=null and arrayName.size()>0 ></if>判断不为null和个数大于0,如果写arrayName!=''时会报错,invalid comparision: java.util.Arraylist and java.lang.String

2.mapper.xml中if判断

<sql> sql片段中表的别名例如ticket和sql语句中尽量统一,引用此sql片段的语句的别名遵循sql片段的表别名

<if test="statusCd!=null and statusCd!=''"></if> if判断时null和空串都要判断

<if test="name !=null and name!=''">and ticket.name like concat ('name',#{name},'%')</if>  模糊查询

<if test="createTimeStart=null and createTimeStart!=''">and ticket.create_time &gt;#{createTimeStart}</if> 大于等于

<if test="createTimeEnd=null and createTimeEnd!=''">and ticket.create_time &lt;#{createTimeEnd}</if> 小于等于

</sql>

最后

以上就是微笑茉莉为你收集整理的mybatis传入array的全部内容,希望文章能够帮你解决mybatis传入array所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(82)

评论列表共有 0 条评论

立即
投稿
返回
顶部