공부
[Spring] Mybatis `if else` == `choose when otherwise`
승가비
2019. 12. 21. 20:39
728x90
<if test='a != null'>
</if>
<if test='a == null'>
</if
<choose>
<when test='a != null'>
</when>
<otherwise>
</otherwise>
</choose>
728x90