欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ibatis iterate 数组

程序员文章站 2022-05-23 12:56:19
...
It's very simple, however iBATIS documentation does not state this. Suppose you need to issue a query with an IN (....) criterion and you need to pass an array of values into it:
 <select id="getSmth" resultClass="myclass">
select name, body from myclass_table where name in (
<iterate conjunction=",">#[]#</iterate>
)
</select>

The essential condition for success is - don't specify the parameterClass attribute in select and don't specify property in iterate, otherwise the query won't work.
相关标签: iBATIS