2017년 6월 27일 화요일

ibatis, mybatis 사용문 비교

구분 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>