mybatis查询sql中in条件使用(foreach)

来源:互联网 发布:sqlserver blob大小 编辑:程序博客网 时间:2024/06/05 17:54

foreach属性主要有item,index,collection,open,separator,close。
1、item表示集合中每一个元素进行迭代时的别名,
2、index指定一个名字,用于表示在迭代过程中,每次迭代到的位置,
3、open表示该语句以什么开始,
4、separator表示在每次进行迭代之间以什么符号作为分隔符,
5、close表示以什么结束,
6、collection属性,该属性是必须指定的,但是在不同情况下,该属性的值是不一样的,主要有一下3种情况:
a、如果传入的是单参数且参数类型是一个List的时候,collection属性值为list .
b、如果传入的是单参数且参数类型是一个array数组的时候,collection的属性值为array .
c、如果传入的参数是多个的时候,我们就需要把它们封装成一个Map了,当然单参数也可以封装成map,实际上如果你在传入参数的时候,在MyBatis里面也是会把它封装成一个Map的,map的key就是参数名,所以这个时候collection属性值就是传入的List或array对象在自己封装的map里面的key.

<select id="findBy" resultMap="RfCustomerMemMap" parameterType="java.util.Map">      SELECT      <include refid="Column"/>      FROM rfl_customer_mem a LEFT JOIN rfl_loan b ON a.member_no = b.loan_member_no      WHERE a.member_no = #{memberNo} AND b.status IN      <foreach collection="status" index="index" item="item" open="(" separator="," close=")">          #{item}      </foreach>      <if test="name != null and name != ''">          AND name = #{name}      </if>      <if test="idNumber != null and idNumber != ''">          AND id_number = #{idNumber}      </if>      <if test="mobileNo != null and mobileNo != ''">          AND mobile_no = #{mobileNo}      </if>      <if test="loanNo != null and loanNo != ''">          AND loan_no = #{loanNo}      </if>      order by a.id DESC      <if test="offset > -1 and rows > -1">          limit #{offset},#{limit}      </if>  </select>  

java代码

public List<LoanMerchantMemEntity> findMerchantMemBy(String merchantName, String merchantNo, String socialCreditCode, String loanNo, int offset, int limit) {          List<LoanMerchantMemEntity> list = new ArrayList<LoanMerchantMemEntity>();          Map<String, Object> filter = new HashMap<String, Object>();          filter.put("merchantName", merchantName);          filter.put("socialCreditCode", socialCreditCode);          filter.put("status", statsList());          filter.put("loanNo", loanNo);          filter.put("offset", offset);          filter.put("limit", limit);          filter.put("merchantNo", merchantNo);          try {              List<LoanMerchantMemEntity> row = loanMerchantMemDao.findBy(filter);          } catch (Exception e) {              LOGGER.error(filter, "查询企业会员信息异常", e);          }          return list;      }  
阅读全文
0 0
原创粉丝点击