Mybatis 中遍历map 参数中的 list 和 array 属性


原文:https://blog.csdn.net/liudongdong0909/article/details/51048835

 

问题
在项目有中遇到批量删除操作时,需要根据两个属性去删除数据,其中一个是类型:type, 另一个是ids:数组形式的id数组。由于在官方文档中只是简单的介绍foreach的用法,套用之后进行批量删除操作:提示遍历map中的array 属性是无法获取值。

解决方案
通过重新阅读mybatis 3 官方文档, 查阅CSDN iteye等网站资料。

代码
controller层

/**
 *[根据附件的类型 type 和 对象ids批量删除附件信息]
 */
@RequestMapping("/deleteProjectInterimByIds.do")
public void deleteProjectInterimByIds(HttpServletResponse response, 
@RequestParam(value = "ids", required=true)Long[] ids,
@RequestParam(value="type",required=true)Integer type) {
        Map<String, Object> paraMap = new HashMap<String, Object>();
        paraMap.put("type", type);
        paraMap.put("ids", ids);
        int i =  nterimAttService.deleteAttachmentByObjIdsAndType(paraMap);
        System.out.println(i);

dao层

@Override
public int deleteAttachmentByObjIdsAndType(Map<String, Object> paraMap) {
    return this.getSqlSession().delete(NAME_SPACE +"batchDeleteAttByIds", paraMap);
    }

mapper.xml

<–1.取map中的key 为type的值 
2.取map中的key 为ids 的值;Ids 在map中是以数组的形式存在 的,直接标记取出就可以,采用#{des}的方式会出现错误;–>

<delete id="batchDeleteAttByIds" parameterType="map">
    delete from project_attachments
    where attachment_type = #{type} and object_id in 
    <foreach collection="ids" open="(" close=")" separator="," item="id">
        #{id}
    </foreach> 
  </delete>

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM