mybatis中的otherwise怎么使用

1276
2024/3/9 10:47:36
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

在MyBatis中,otherwise是choose元素中的一个条件分支,用于指定当其他条件不满足时的默认分支。通常情况下,choose元素用于在多个条件中选择一个满足条件的分支执行。

下面是一个使用otherwise的示例:

<select id="selectBlog" parameterType="int" resultType="Blog">
  SELECT * FROM blog
  WHERE id = #{id}
  <choose>
    <when test="author != null">
      AND author = #{author}
    </when>
    <when test="title != null">
      AND title = #{title}
    </when>
    <otherwise>
      AND views > 100
    </otherwise>
  </choose>
</select>

在上面的示例中,如果author和title都不为null,则根据author和title查询blog;如果只有author不为null,则根据author查询blog;如果只有title不为null,则根据title查询blog;如果author和title都为null,则查询views大于100的blog。

通过使用otherwise,可以指定在没有其他条件满足时的默认分支逻辑。

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: mybatis中mapper映射的方法是什么