作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我不想对结果重新排序。
示例:
def ids = [7, 9, 5, 6, 12, 2, 10, 1, 42, 13]
result = Project.findAllByIdInList(ids).collect{
projectUtil.createProjectDTO(it)
}
然后,如果我得到创建的对象的 ID,它们会按这种方式排序
result = [1, 2, 5, 6, 7, 9, 10, 12, 13, 42]
我想保持相同的顺序,有办法实现吗?
提前致谢,并对我的英语不好表示歉意:)
最佳答案
您可以尝试使用 getAll
而不是 findAllByIdInList
:
def ids = [7, 9, 5, 6, 12, 2, 10, 1, 42, 13]
result = Project.getAll(ids).collect {
projectUtil.createProjectDTO(it)
}
我刚刚在集成测试中使用类似的示例对其进行了测试,它按照 ID 列表中声明的顺序返回了实例。
关于java - Grails 将排序列表提供给 findAllByIdInList,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20131460/
我不想对结果重新排序。 示例: def ids = [7, 9, 5, 6, 12, 2, 10, 1, 42, 13] result = Project.findAllByIdInList(ids)
我是一名优秀的程序员,十分优秀!