在Grails / GORM中,static mapping = {xyz lazy: false}
和&之间有什么区别? static fetchMode = [xyz: 'eager']
?
示例:
class Book {
static belongsTo = [author: Author]
static mapping = {author lazy: false}
static fetchMode = [author: 'eager']
}
答案 0 :(得分:5)
lazy:false 与 fetchMode'渴望'之间的差异
如果您对Fetchmodes的详细说明感兴趣,请查看http://www.solidsyntax.be/2013/10/17/fetching-collections-hibernate/。本文描述了Hibernate fetchmodes及其产生的输出。
希望这有帮助。