Using lazy property fetching in Grails / Gorm

2020-02-15 06:04发布

is there any way to use lazy property fetching in Grails / Gorm ? somtehing like:

@Basic(fetch = FetchType.LAZY)

annotation ( it also works with left join fetch?)

(for example lazy loading of an String attribute)

2条回答
ゆ 、 Hurt°
2楼-- · 2020-02-15 06:12

This question was asked on the grails-user mailing list here. There are a few different options discussed.

查看更多
在下西门庆
3楼-- · 2020-02-15 06:27

Take a look at

http://grails.org/doc/latest/guide/single.html#5.5.2.8%20Eager%20and%20Lazy%20Fetching

EDIT

By the way have you tried?:

static mapping = {
    property lazy:true
}
查看更多
登录 后发表回答