如何在 ColdFusion Model Glue 3 中访问控制器外部的 bean?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这将取决于你的 bean 工厂——很可能是 ColdSpring。如果您的 ColdSpring 实例保存在 Application.beanFactory 中(我认为这是默认设置,自从我上次使用 ModelGlue 以来已经有一段时间了),那么您将执行以下操作:
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: