Using Lazy Property in Grails / Gorm

Is there a way to use the lazy property obtained in Grails / Gorm? somtehing like:

@Basic (fetch = FetchType.LAZY)

annotations (does it also work with left join?)

(e.g. lazy loading of String attribute)

+1
source share
2 answers

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

+2
source

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
}
+3
source