Grails 1.4 - ApplicationHolder、ConfigurationHolder 等发生了什么?

发布于 2024-11-10 00:12:53 字数 132 浏览 4 评论 0原文

因此,所有静态持有者类都已被弃用(并且正在轰炸我的测试)。

例如,获取应用程序元数据的新方法是什么?之前,您可以使用 ApplicationHolder.application.metadata.'blah'

So, all the static holder classes have been deprecated (and are bombing my tests).

What's the new way to get at application metadata, for example? Before, you could use ApplicationHolder.application.metadata.'blah'

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

断桥再见 2024-11-17 00:12:53

它们已被 弃用,转而采用注入方法 我相信...

您可以添加:

def grailsApplication

对于需要此功能的类,那么应该在运行时注入它,并且您应该能够执行以下操作:

grailsApplication.metadata.'blah'

像以前一样?

可通过以下方式进行配置:

grailsApplication.config

They're been deprecated in favor of the injection method I believe...

Can you add:

def grailsApplication

To your classes that require this, then it should be injected at run-time, and you should be able to do:

grailsApplication.metadata.'blah'

As before?

Configuration is available via:

grailsApplication.config
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文