티스토리 뷰

1. isEmpty(str) 문자열이 널 또는 널스트링인지 검사

방법 1.

<if test="str != null and str != ''">


비교문 중 &&는 and 또는 &amp;&amp; 로 변환해서 사용

같다 라는 == 는 == 또는 eq로 변환해서 사용할수 있음

<if test="userId != null &amp;&amp; ''.equals(userId)">


방법2.

자바로 함수를 만들어 MyBatis에서 호출하는 형식


- default package 일 때

<if test-"@Ognl@isNotEmpty(userId)">

and user_id =#{userId}

</if>


- 패키지가 있을때

<if test="@com.web.common.MyBatisUtils@isNotEmpty(userId)">


2. isEquals(str) 문자열 비교


<if test="userId == 'abc'"> 이렇게 비교가 될것 같지만 에러 발생

MyBatis에서는 변수가 자바객체처럼 사용되므로 ( OGNL (Object Graph Navigation Language)를 사용하여

속성 처리를 하고 있기 때문에) 자바에서 사용되는 문자열 비교 메소드를 이용하면 된다. 단 비교할 문자를 먼저 쓴 경우도 에러 발생.


<if test='userId.equals("abc")'>    (O)

<if test='userId == "abc"'>    (O)

<if test="userId == 'abc'">    (X)

<if test='userId == "abc"'>    (O)

<if test="'abc'.equals(userId)">    (O)

<if test="userId.equals('abc')">    (X)

<if test="userId == 'abc'.toString()">    (O)

<if test="userId eq 'abc'.toString()">    (O)

<if test="userId.equalsIgnoreCase('abc')">    (O)

<if test="'abc'.equalsIgnoreCase(userID)">    (X)


3. NumberFormatException 발생시


<if test="파라미터 != null and 파라미터 =='Y' ">

</if>

위와 같은 쿼리 실행시 NuberFormatException이 발생한다.


아래의 조건으로 해결할 수 있다. 하지만 ' 와 " 에 주의해야 한다.

자바단에서 set('Y') 저장하는 경우 ->

<if test=" 파라미터 != null and 파라미더.equals( ' ' ) ">


자바단에서 set("Y") 저장하는 경우 ->

<if test=' 파라미터 != null and 파라미터.equals( " Y " ) '>

'Framework > MyBatis' 카테고리의 다른 글

[mssql] net.sourceforge.jtds.jdbc.ClobImpl@  (1) 2018.11.21
댓글