`
seanwon
  • 浏览: 63710 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

GRAILS belongsTo hasMany 查询问题

阅读更多
这个bug已经在1.1的正式版本中修复。

举个例子:
class Author {
  static hasMany = [books:Book]
}
class Book {
  static belongsTo = [author: Author]
}

查询Author:
def criteria = Author.createCriteria()
def list = criteria {
   //conditions
}
list.each { author->
  author.books.each{
  }
}

在author.books.each这一步就会导致book的更新(version会变化,有时候会导致乐观锁错误)
改成如下方式可避免:
def books = Book.findAllByAuthor(author)
books.each {
}

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics