Вопрос

I'm trying to dynamically create domain objects in Grails and encountered the problem that for any property referencing another domain object the metaproperty tells me its type is "java.lang.Object" and not the expected type.

For example:

class PhysicalSiteAssessment {
    // site info
    Site site
    Date sampleDate
    Boolean rainLastWeek
    String additionalNotes
    ...

is the beginning of a domain class, which references another domain class "Site".

If I try to dynamically find the property types for this class by using this code (in a service):

String entityName = "PhysicalSiteAssessment"
Class entityClass
try {
    entityClass = grailsApplication.getClassForName(entityName)
} catch (Exception e) {
    throw new RuntimeException("Failed to load class with name '${entityName}'", e)
}
entityClass.metaClass.getProperties().each() {
    println "Property '${it.name}' is of type '${it.type}'"
}

then the result is that it recognizes the Java classes, but not the Grails domain class. The output contains the following lines:

Property 'site' is of type 'class java.lang.Object'
Property 'siteId' is of type 'class java.lang.Object'
Property 'sampleDate' is of type 'class java.util.Date'
Property 'rainLastWeek' is of type 'class java.lang.Boolean'
Property 'additionalNotes' is of type 'class java.lang.String' 

The problem is that I would like to use the dynamic lookup to find matching objects, e.g. do a

def targetObjects = propertyClass."findBy${idName}"(idValue)

where the propertyClass is retrieved via introspection, idName is the name of the property to look up (not necessarily the database ID) and idValue is the value to find.

It all ends in:

org.codehaus.groovy.runtime.InvokerInvocationException: groovy.lang.MissingMethodException: No signature of method: static java.lang.Object.findByCode() is applicable for argument types: (java.lang.String) values: [T04]

Is there a way to find the actual domain class for the property? Or maybe some other solution to the problem of finding an instance of a domain class whose type is not given (only a property name that has the type)?

It works if I use the convention that the type name is the property name capitalized ("site"->"Site") to look up the class via the grailsApplication instance, but I would like to avoid that.

Это было полезно?

Решение

Grails allows you to access some meta-information of your domain model via the GrailsApplication instance. You can look it up that way:

import org.codehaus.groovy.grails.commons.ApplicationHolder
import org.codehaus.groovy.grails.commons.DomainClassArtefactHandler

def grailsApplication = ApplicationHolder.application
def domainDescriptor = grailsApplication.getArtefact(DomainClassArtefactHandler.TYPE, "PhysicalSiteAssessment")

def property = domainDescriptor.getPropertyByName("site")
def type = property.getType()
assert type instanceof Class

API:

Другие советы

The answer above provided by Siegfried became obsolete somewhere around Grails 2.4. ApplicationHolder is obsolete.

Now, you can get real type names from the domainClass property that every domain class has.

entityClass.domainClass.getProperties().each() {
    println "Property '${it.name}' is of type '${it.type}'"
}

Note: this answer is not directly to the question but relates enough IMO.

I was banging my head to the wall, ground and surrounding trees when trying to resolve the "generic type" of a collection association:

class A {
    static hasMany = {
        bees: B
    }

    List bees
}

Turned out the easiest and yet sound way was mere (and which I did not try but after 3 hours):

A.getHasMany()['bees']
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top