In Grails / GORM, what is the difference between static mapping = {xyz lazy: false}
& static fetchMode = [xyz: 'eager']
?
Example:
class Book {
static belongsTo = [author: Author]
static mapping = {author lazy: false}
static fetchMode = [author: 'eager']
}