Grails:使用 GORM 进行现场访问
Hibernate 默认使用方法调用来获取域类属性的值。如何使用 GORM 配置直接现场访问?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
Hibernate 默认使用方法调用来获取域类属性的值。如何使用 GORM 配置直接现场访问?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
它不被直接支持,但将在 1.4 中得到支持。现在,您可以使用自定义配置子类来启用它,如 http://grails.1312388.n4.nabble.com/GORM-setting-access-quot-field-quot-td1592837.html#a1594428
我做了一篇关于子类化配置的小帖子包含具体示例的链接 http://burtbeckwith.com/blog/?p=465
It's not directly supported but will be in 1.4. For now you can enable it with a custom Configuration subclass as described at http://grails.1312388.n4.nabble.com/GORM-setting-access-quot-field-quot-td1592837.html#a1594428
I did a small post about subclassing Configuration with links to specific examples at http://burtbeckwith.com/blog/?p=465
我认为这是由于 groovy 实现 Beans 约定 的方式造成的,因此不能为 GORM 配置。
I suggest this is due to how groovy implements Beans convention therefore not something that can be configured for GORM.