如何在 ColdFusion Model Glue 3 中访问控制器外部的 bean?

发布于 2024-12-05 17:27:22 字数 255 浏览 0 评论 0原文

Model Glue 3 引入了 bean 注入,它允许您在控制器中执行此操作以访问它:

beans.component.function();

但是,beans 范围仅适用于控制器。我如何访问控制器外部的 bean,例如在 Application.cfc 或辅助 UDF 中?我有一个 SimpleConfig bean,我想访问它的一些配置信息。

Model Glue 3 introduced bean injection, which allows you to do this in a controller to access it:

beans.component.function();

However, the beans scope is only available for a controller. How would I access a bean outside of a controller, for example in Application.cfc or a helper UDF? I have a SimpleConfig bean that I'd like to access some config info for.

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

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

发布评论

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

评论(1

只有一腔孤勇 2024-12-12 17:27:22

这将取决于你的 bean 工厂——很可能是 ColdSpring。如果您的 ColdSpring 实例保存在 Application.beanFactory 中(我认为这是默认设置,自从我上次使用 ModelGlue 以来已经有一段时间了),那么您将执行以下操作:

variables.config = application.beanFactory.getBean("SimpleConfig");

It's going to depend on your bean factory -- most likely ColdSpring. If your ColdSpring instance is saved in Application.beanFactory (I think this is the default, it's been some time since I last used ModelGlue), then you would do the following:

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