码迷,mamicode.com
首页 > 移动开发 > 详细

MyBatis中Mapper配置常见问题(持续更新)

时间:2017-11-09 15:02:44      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:更新   type   sep   collect   div   style   必须   arch   blog   

  1. 入参为List时,foreach标签中collection属性值固定为“list”(list存放在map中作为入参时,collection应为key值):

    <foreach item="item" collection="list"  open="("  separator=","  close=")">
        #{item, jdbcType=VARCHAR, javaType=string}
    </foreach>
  2. if标签中比较Enum对象和String对象时,枚举对象必须先调用toString():

    <if  test="Enum.toString() == ‘String‘">
    </if>

MyBatis中Mapper配置常见问题(持续更新)

标签:更新   type   sep   collect   div   style   必须   arch   blog   

原文地址:http://www.cnblogs.com/k-blog/p/7808281.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!