ibatis返回的列表无法修改? (抛出不支持的操作异常)
我通过 ibatis 从数据库中选择一个 id 列表,但是当尝试添加
一个新元素时,它会抛出一个不受支持的异常。
ibatis返回的列表是最终的还是不可变的?
I select a list of ids from database via ibatis, but when try to add
a new element, it throw a unsupported exception.
Is the list return by ibatis is final or immutable?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,它是只读列表,并且可能由数据库游标支持,当您迭代列表时,数据库游标会读取并缓存。在操作数据之前,您应该复制它。
Yes it is a read only list and may be backed by a database cursor that reads and caches as you iterate over the list. Before you can manipulate your data you should copy it.