Struts 有 Spring HandlerAdapter 实现吗?
这只是一个好奇问题。我知道Spring可以通过某些方式在Struts ActionServlet(sp?)中使用,但我想知道是否有一个HandlerAdapter允许将旧的Struts代码立即移植到Spring DispatcherServlet以使用DispatcherServlet作为前端控制器。
This is just a curiosity question. I know that Spring can be used in a Struts ActionServlet (sp?) via certain means, but I was wondering if there was a HandlerAdapter that allowed old Struts code to be ported immediately to a Spring DispatcherServlet to use the DispatcherServlet as the front controller.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
所有 Spring-Struts 接口代码都在 org.springframework.web.struts 包,其中没有
HandlerAdapter
实现,只有诸如 DelegatingRequestProcessor。我认为即使对于 Spring 的集成能力来说,Struts 框架也太糟糕了。
All of the Spring-Struts interface code is in the org.springframework.web.struts package, and there's no
HandlerAdapter
implementation in there, just the delegation stuff like DelegatingRequestProcessor.I suppose the Struts framework is just too awful even for Spring's integration abilities.