As I read here, grails is using methodMissing to inject GORM methods to the domain classes, but having said that methodMissing are expensive to execute cause only occur in the case of failed dispatch, why those methods are not injected via metaClass or AST Transformations? Any clues?
|
|
Using methodMissing is not that expensive, since Grails creates a new methode in the MOP only at the first execution of a methode not found. The sub-sequente executions takes place on the newly created methode. Consider a domain class with many properties. If all findBy*, findAlLBy*, countBy* etc permutations should be created at compile time, the classes could easily become VERY large. By using the methodeMissing, only methodes actually used at runtime will be created. |
|||
|
|
|
As I understand the code, this information is outdated. These methods are injected to metaClasses. Take a look at the code for grails-hiberante plugin.
Then, open up a
This closure is crucial inside
And it is called for every entity in lines 581-583. Methods are generated from line 587 in method
Please revise and correct me if I'm wrong. I'm not that confident that it is all correct. These are only my findings while reading a Grails source code. |
|||
|
|