gpt4 book ai didi

java - 为什么mybatis3不支持Set foreach?

转载 作者:行者123 更新时间:2023-12-02 03:13:27 26 4
gpt4 key购买 nike

如果parameterType是java.util.Set或其实现,则使用此参数执行foreach会抛出java.lang.UnsupportedOperationException

<select id="selectList" parameterType="java.util.HashSet" resultMap="someMap">
SELECT key FROM tb_my_table
WHERE value IN (
<foreach collection="set" item="item" separator=",">
#{item}
</foreach>
)
</select>

mybatis3内部的原因是CollectionWrapper没有实现get方法,只是抛出异常。
我想知道是否是有意设计以及原因。

最佳答案

documentation声明可以使用 Sets:

You can pass any Iterable object (for example List, Set, etc.), as well as any Map or Array object to foreach as collection parameter.

我可以使用 Mybatis 3.2.7 重现异常。

但在 Mybatis 3.3.0 上运行良好。

请注意,单个参数的预期名称是集合:

<select id="selectList" parameterType="java.util.HashSet" resultMap="someMap">
SELECT key FROM tb_my_table
WHERE value IN (
<foreach collection="collection" item="item" separator=",">
#{item}
</foreach>
)
</select>

关于java - 为什么mybatis3不支持Set foreach?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40713243/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com