有时候我们并不希望所有的条件都生效,而是只想在多个选项中选择一个。类似于Java中的switch语句,MyBatis提供了 ?<choose>
?元素。
让我们使用上面的例子,但现在如果提供了标题,则只搜索标题;如果提供了作者,则只搜索作者。如果都没有提供,则只返回特色博客(可能是由管理员策略性选择的列表,而不是返回一大堆无意义的随机博客)。
<select id="findActiveBlogLike"
resultType="Blog">
SELECT * FROM BLOG WHERE state = ‘ACTIVE’
<choose>
<when test="title != null">
AND title like #{title}
</when>
<when test="author != null and author.name != null">
AND author_name like #{author.name}
</when>
<otherwise>
AND featured = 1
</otherwise>
</choose>
</select>