Struts

What is Struts? Struts Framework was developed by Craig McLanahan in 2002 and subsequently handed over to Apache Jakarta project group. Struts Framework is the implementation of Model-View-Controller (MVC) design pattern for the JSP and Servlets.   What is Model-View-Controller (MVC) ? Model-View-Controller architecture is all about dividing application components into three different categories Model, View ...

RequestProcessor Class

RequestProcessor Class is the actual place where the request processing takes place in a Struts controller environmentStruts Documentation When the request object first reaches the actionservlet class ,it invokes the process method of the underlying  RequestProcessor Class.   This process method then looks into the struts-config.xml file and tries to locate the name of the action that has come with ...