get mapWith static domain field value from GrailsDomainClass grails

删除回忆录丶 提交于 2019-12-08 04:36:10

问题


How can I get mapWith property of a domain class?

I tried domainClass.mapWith as it's a static property of domain class.It didn't work. I also tried mappedBy but it's a different context.

Any idea on how can i get mapWith value from GrailsDomainClass

Below is my domain:-

public class Ticket {
    String id

    List<Long> productInstanceId

    static hasMany = [productInstanceId:Long]

    static mapWith = "none"

}

回答1:


If you are doing a direct check on a particular domain then you can fetch the static property with domain class. In your case it would be Ticket.mapWith or Ticket.class.mapWith.

If you are doing a dynamic check then you can find it with the help of DefaultGrailsDomainClass.

GrailsDomainClass aClass = new DefaultGrailsDomainClass(clazz)
aClass.mappingStrategy



回答2:


If you have the GrailsDomainClass you can access static properties via the Groovy (or Java) class using the getClazz() method or its clazz property form:

GrailsDomainClass dc = ...
String mapWith = dc.clazz.mapWith


来源:https://stackoverflow.com/questions/29625034/get-mapwith-static-domain-field-value-from-grailsdomainclass-grails

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!