구분 | ibatis | mybatis |
---|---|---|
//변수간 값 비교할때
if (start == end) {
}
|
<isEqual property="start" compareProperty="end"> </isEqual> |
<if test="start == end"> </if> |
//변수와 값을 비교할때
if (start == "Y") {
}
|
<isEqual property="start" compareValue="Y"> </isEqual> |
<if test="start == 'Y'"> </if> |
if (type == "P01") {
} else if (type == "P02") {
} else { } |
<choose> <when test="type == 'P01'"> </when> <when test="type == 'P02'"> </when> <otherwise></otherwise> </choose> |
|