Java/mybatis
Mybatis 반복문 처리
바리새인
2025. 1. 15. 23:03
<foreach collection="conditions" item="condition" separator=" ">
<choose>
<when test="condition.compare == 'like'">
쿼리
</when>
<when test="condition.compare == '='">
쿼리
</when>
<otherwise>
쿼리
</otherwise>
</choose>
</foreach>