Struts 2 Architecture

Sturts 2 MVC framework contains the following core components:

  1. Actions.
  2. Interceptors.
  3. Value Stack / OGNL
  4. Result types

Diagram:

Struts 2 request life cycle:

  1. When a request comes web container maps the request in the web.xml and calls the controller (FilterDispatcher).
  2. FilterDispatcher calls the ActionMapper to find an Action to be invoked.
  3. FilterDispatcher calls the ActionProxy.
  4. ActionProxy reads the information of action and interceptor stack from configuration file using configuration manager (struts.xml) and invoke the ActionInvocation.
  5. ActionInvocation calls the all interceptors one by one and then invoke the action to generate the result.
  6. action is executed ActionInvocation again calls the all interceptors in reverse order.
  7. Control is returned to the FilterDispatcher.
  8. Result is sent to the client.

 

Note: Struts 2 uses the ActionContext to store all the data for a request processing. ActionContext work on the ThreadLocal concept i.e. unique values for every thread. That’s why it is thread safe and we don’t have to make our action thread safe explicitly.

Next Topic: Struts 2 Configuration Files. Previous Topic: Struts 2 overview.

 

Please follow and like us:
Content Protection by DMCA.com