是否可以将命名查询元编程到 Grails 域类上?
是否可以将命名查询元编程到 Grails 域类上?如果是这样,怎么办?
谢谢
Is it possible to metaprogram named queries onto a grails domain class? If so, how?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
域类有一个 namedQueries 属性,您可以使用它来添加自己的命名查询。如果您想在插件中使用元编程(而不是直接编辑域类)来执行此操作,则应该在 doWithDynamicMethods 关闭插件的描述符文件。
像这样的东西应该可以工作:
这会将
myNamedQuery
添加到安装插件的应用程序中的每个域类。如果您只想将其添加到某些域类,则替换的值>domainClassFilter
进行更合适的测试。Domain classes have a namedQueries property that you can use to add your own named queries. If you want to do this using metaprogramming from within a plugin (rather than by editing the domain class directly), you should do it in the doWithDynamicMethods closure of the plugin's descriptor file.
Something like this should work:
This will add
myNamedQuery
to every domain class in the application that the plugin is installed in. If you only want to add it to some domain classes, then replace the value ofdomainClassFilter
with a more appropriate test.