728x90
반응형
ibatis의 isNull과 isEmpty
isNull은 null인지 아닌지 체크
isEmpty는 null 검사와 더불어 String이 공백인지 아닌지
Collection인 경우 배열인 경우 크기가 0 인지 검사
Mybatis로 변환 방법👇
# ibatis
<isNotEmpty property="paramValue" >
# mybatis
<if test="paramValue != null and paramValue != '' " >
# ibatis
<isEmpty property="paramValue" >
# mybatis
<if test="paramValue == null or paramValue == '' " >
반응형
'프로그래밍 > Mybatis' 카테고리의 다른 글
Invalid bound statement (not found) 오류 (0) | 2021.12.15 |
---|---|
There is no READABLE property named '***' in class 'java.lang.String' 오류 (0) | 2021.12.14 |
Cause: java.sql.SQLException: Invalid parameter object type. Expected 'java.lang.String' but found 'java.util.LinkedHashMap'.; (0) | 2021.08.24 |
09.28(Mybatis 활용) (0) | 2020.09.28 |
09.25(Mapper 설정) (0) | 2020.09.25 |