作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有三个实现复合模式的类:Item、Cluster 和 Element。
class Item extends Locatable {
...
}
class Cluster extends Item {
static hasMany = [items:Item]
...
}
class Element extends Item {
...
}
ins.getClass().getSimpleName()
的集群还是元素时我得到了一个奇怪的类名:
Item_$$_javassist_165
, 如果我做
println ins.toString()
我打印了正确的类名(
toString
方法返回
this.getClass().getSimpleName()
)。
"Item_$$_javassist_165"
类(class)名称?
最佳答案
What is this
"Item_$$_javassist_165"
class name?
ins instanceof Cluster
的明显方法当您有一个扩展另一个域类时,在存在代理的情况下可能无法正常工作,但 GORM 提供了注入(inject)的
instanceOf method这可以满足您的需要,并将正确处理代理。
if(ins.instanceOf(Cluster)) { .... }
关于grails - 从 ins.getClass().getSimpleName() 获取 Item_$$_javassist_165,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18357476/
我是一名优秀的程序员,十分优秀!