ding 与 zend 框架集成
我们在工作场所使用 ZendFramework 来构建我们的网络应用程序。没关系,但它缺乏一些最好的现代实践(比如依赖注入和控制反转、aop 等)。
几个月来,我一直(独自)使用 Ding 框架作为 DI 和 AOP 的容器来进行测试。我真的很喜欢它,所以我想把它带入我们的项目中。
但如何呢?那么问题来了:如何正确地将 Ding 集成到 Zend Framework 应用程序中?考虑到 ZF 控制器不能是 bean(因为它们是直接从调度程序实例化的),如何正确地将所有依赖项注入其中?
Ps:不使用 Zend Framework 不是一个选择(至少在中期)。 PPS:有人愿意添加“ding”作为新标签吗?
We're using ZendFramework at my workplace for our webapps. It's ok, but it lacks some of the best modern practices (like dependency injection and inversion of control, aop, etc).
For a couple of months, I've been (on my own) using Ding framework as a container for DI and AOP as a test drive. I really like it, so I'd like to bring it into our projects.
But how? So there's the question: how to properly integrate Ding in Zend Framework applications? considering ZF controllers cant be beans (as they are instantiated right from the dispatcher), how to propertly inject all dependencies in them?
P.s: Not using Zend Framework is not an option (at least in the middle term).
P.P.S: Anyone care to add "ding" as a new tag?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我很高兴丁能帮助你。
我为这个项目做出了贡献,并且还需要与 Zend Framework 应用程序集成。我使用 Zend 的应用程序资源和插件系统来实现这一点。
应用程序资源(您可以在项目之间重用)
在控制器内部使用的操作助手:
在您的
application.ini
中,您应该添加类似这样的内容(加上您需要的任何额外配置),然后在您的控制器中,请求一个 bean:
希望这有帮助!
I'm glad Ding is helping you.
I contributed on this project and also needed to integrate with a Zend Framework application. I used Zend's application resources and plugin system to achieve this.
An application resource (you can reuse among projects)
An action helper to use inside the controllers:
In your
application.ini
you should add something like this (plus any extra configuration you need)And then in your controllers, to request a bean:
Hope this helps!