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 == '' " >
반응형
복사했습니다!