引言
由于我们对于mapper采用的是注解上面写的sql的方式,而不是常用的xml文件。之后遇到了一个批量插入的问题,找了很久也没有找到合适的方式,至于mybatis官网的使用手册对于这方面的说明也少之又少,后来自己灵机一动,没想到真的成功了。于是贴出来供大家参考,不合适之处请不吝赐教
正文
以下是我mapper的源码
@Select({
"<script>"
+ "SELECT "
+ "orders.orderId, product_sku.productId, product_sku.skuName, "
+ "orders.number, orders.orderPrice,product_sku.skuPrice, "
+ "orders.orderCreate, customer.mobile, shop_keeper.mobile1 as shopKeeperMobile, "
+ "shop.name, orders.shopId, shop.address, shop.cityCode "
+ "FROM orders, product_sku, customer, shop, shop_keeper "
+ "WHERE orders.skuId=product_sku.skuId "
+ "AND orders.customerId = customer.customerId "
+ "<if test='orderStatus != null'>"
+ "AND orders.orderStatus IN "
+ "<foreach item='status' index='index' collection='orderStatus' open='(' separator=',' close=')'>"
+ "#{status} "
+ "</foreach>"
+ "</if>"
+ "AND orders.shopId = shop.shopId "
+ "AND orders.shopId = shop_keeper.shopId "
+ "ORDER BY customer.mobile DESC, orders.shopId DESC ,orders.orderCreate DESC"
+ "</script>"
})
List<Map<String, Object>> selectOrders(@Param(value="orderStatus")List<Short> orderStatus);
@Update({
"<script>"
+ "UPDATE orders SET orderStatus = #{orderStatus} WHERE orderId in "
+ "<foreach item='item' index='index' collection='orderId' open='(' separator=',' close=')'>"
+ "#{item}"
+ "</foreach>"
+"</script>"
})
int updateOrderStatus(@Param("orderStatus") Short orderStatus,@Param("orderId") String[] orderList);
不要被上面的一大坨select惊吓到,核心就是<script>然后foreach的使用方法有一点小小的特别。对于关于foreach标签,有几个属性应该注意一下:
collection: 指定要遍历的集合(三种情况 list,array,map) !!!!在这种使用注解sql的情况下,这里请填写mapper方法中集合的名称
item:将当前遍历出的元素赋值给指定的变量 (相当于for循环中的i)
separator:每个元素之间的分隔符
open:遍历出所有结果拼接一个开始的字符
close:遍历出所有结果拼接一个结束的字符
index:索引。遍历list的时候是index就是索引,item就是当前值
#{变量名}就能取出变量的值也就是当前遍历出的元素
具体使用方法这里我就不在赘述了,对于collection这个必填项还存在不理解的可以参考另一篇博客 链接 http://blog.csdn.net/weixin_39923425/article/details/79374018