써먹는 웹개발
[Mybatis] Array 변수(파라미터)의 null 체크하는 2가지 방법 본문
1. Array 파라미터를 넘길때
<if test="!파라미터명.isEmpty()"> AND 컬럼명 IN <foreach collection="파라미터명" item="item" separator="," open="(" close=")"> </foreach> </if> |
2. Array 파라미터를 안 넘길때
service 부분 package kr.co.develop.service; |
<if test="@kr.co.develop.service.CmCodeService@isNotEmpty(파라미터명)"> <foreach collection="파라미터명" item="item" separator="," open="(" close=")"> </foreach> </if> |
'Server > Mybatis (.xml)' 카테고리의 다른 글
[Mybatis] View 연동해서 Mybatis in절 사용하는 방법 (ex. '1,2,3') (0) | 2021.06.22 |
---|---|
[Mybatis] CDATA를 쓰는 경우 (0) | 2020.06.25 |
[Mybatis] Invalid bound statement (not found) 원인 중 하나 (0) | 2020.03.05 |
[Mybatis] Like 검색시 DB별 처리방법 (0) | 2020.02.21 |
[Mybatis 에러] java.lang.NumberFormatException: For input string (0) | 2018.05.22 |