Grails 域类。随机场
我有这个 Grails 域类:
class Main {
Random r;
static constraints = {
}
}
在数据库中我看到,Random
它的 - tinyblob
。
在 ORM DSL 文档中我没有找到关于此的信息。 那么,也许有人会问我,为什么Random
是一个tinyblob
?
I have this Grails domain class:
class Main {
Random r;
static constraints = {
}
}
and in database i see, that Random
its - tinyblob
.
In ORM DSL Documentation i not find indormation about this.
So, maybe, somebody can say me, why Random
its a tinyblob
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个未知类的默认映射,将序列化为字节流。
这是一个用户类型映射的 示例,您可以实现 Hibernate 映射器并将其注册到 Config.groovy 中。
不过,我相信您需要的是声明该字段为瞬态:
或者只是将其设为私有 - 默认情况下不映射私有字段。
It's a default mapping for an unknown class that will serialize into byte stream.
Here's an example of user type mapping, you can implement Hibernate mapper and register it in Config.groovy.
Still, I believe what you need is to declare the field transient:
or just to have it private - private fields are not mapped by default.