我可以在没有 Spring IoC 的情况下使用 Struts2 吗?
我可以在没有 Spring IoC 的情况下使用 Struts2 吗?
Can I use Struts2 without Spring IoC?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我可以在没有 Spring IoC 的情况下使用 Struts2 吗?
Can I use Struts2 without Spring IoC?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
春天只是一种选择。您可以与 Google Guice 等其他人合作,也可以不与 IOC 合作。
Spring is only one option. You can work with others like Google Guice or without IOC.
是的,您可以,即使您可以将两者集成到您的项目中,这也不是必需的。
Yes you can, even when you can integrate both on your project, it is not required.
Struts2 的设计考虑了依赖注入,并且很好地遵守了这些原则(底层的 XWork 框架使用 Guice 的早期版本)。您可以稍后使用适当的插件升级到 Guice 或 Spring。
Struts2 was designed with dependency injection in mind and adheres to the principles pretty well (the underlying XWork framework uses an early version of Guice). You can step up to Guice or Spring later using the appropriate plug-in.
是的,
Spring IOC只是一个可插入的对象依赖容器,它为你管理对象。它是可选的。
Yes
Spring IOC is just a pluggable object dependency container, which manages objects for you. It is optional.
基本上两者都是独立的。您绝对可以在没有 Spring IOC 的情况下使用 Struts 2。
Basically both are independent. You can definitely use Struts 2 without Spring IOC.