使用Set和List传参在MyBatis的foreach标签中遍历的写法是一样的

1.1、List参数在mybatis的foreach写法如下代码:


1.2、对应的mapper(Dao)

public String getObjByProductId(@Param("productids") List productids);

2.1、Set参数在mybatis的foreach写法也一样


2.2、对应的mapper(Dao)

public List getUniqueObjByState(@Param("set") Set set);

注:parameterType不同,foreach循环的写法一样。

你可能感兴趣的:(MyBatis)