如何将列表<对象>转换为逗号分隔的字符串
我正在从数据库调用中获取对象列表。Address
ArrayList<Address> addresses = new ArrayList<>();
每个都有一个属性。Address
int addressId
我正在编写一个更新查询,其中在子句中,我正在发送整个对象列表,并且我得到了 ibatis 。如何转换为逗号分隔的字符串,可以发送以更新查询?IN
Address
TypeException
List<Address>
我的更新查询如下所示:::
Update tablename set postcode = #{postCode} where id in #{addressID}.