Is there a Spring implementation of <handlerAdapter for Struts?
It's just a matter of curiosity. I know Spring can be used in Struts ActionServlet (sp?) By some means, but I was wondering if there is a HandlerAdapter that would allow the old Struts code to be put immediately into the Spring DispatcherServlet in order to use the DispatcherServlet as a front controller.
+2
MetroidFan2002
source
to share
1 answer
All of the Spring-Struts interface code is in the org.springframework.web.struts package and there is no HandlerAdapter
implementation in there, just delegation stuff like DelegatingRequestProcessor .
I believe the Struts framework is too awful even for Spring's integration capabilities.
+1
skaffman
source
to share