Tuesday, August 6, 2013

Struts 2 Interceptors Example

In this example you will see how the interceptors are invoked both before and after the execution of the action and how the results are rendered back to the user. Let's understand this with the help of the following diagram.
The following actions happen in a sequence when a request comes to the Struts 2 framework.
  • Framework first finds which Action class to invoke for this request and discovers the interceptors associated with the action mapping.
  • Now the Framework creates an instance of ActionInvocation and calls its invoke() method. At this point the Frameworks hands the control over to the ActionInvocation for further processing of the request.
  • ActionInvocation is the one which encapsulates the action and the associated intercteptors. ActionInvocation knows in which sequence the interceptors should be invoked.
  • ActionInvocation now invokes the intercept() method of the first interceptor in the stack. We will understand this with the help of an example. Our example is very simple it uses only one interceptor for logging details.
  • The LoggingInterceptor's intercept() method contains the following code.
01.public String intercept(ActionInvocation invocation) throws Exception
02.{
03.//Pre processing
04.logMessage(invocation, START_MESSAGE);
05. 
06.String result = invocation.invoke();
07. 
08.//Post processing
09.logMessage(invocation, FINISH_MESSAGE);
10. 
11.return result;
12.}
  • As you can see, first the logMessage() method is called and the message is logged, this is the pre processing done by the logger interceptor, then the invoke() method of the ActionInvocation is again called, this time the ActionInvocation will call the next intercetor in the stack and this cycle will continue till the last interceptor in the stack.
  • After the execution of all the interceptors the action class will be invoked. Finally a result string will be returned and the corresponding view will be rendered. This is the normal flow of events.
  • But what if an validation error occurs, in this case the request processing will be stopped. No further interceptors will be invoked. Action will not be executed. The control flow changes, now the interceptors executed so far will be invoked in the reverse order to do the post processing if any and finally the result will be rendered to the user.
  • Let's come back to the normal flow. In our case the logger interceptor is the only interceptor in the stack, so after logging the "START_MESSAGE", the ActionInvocation's invoke() method will invoke the action. Our action simply returns "success", then again the logger interceptor will be invoked to do the post processing, this time the "FINISH_MESSAGE" is logged and the result is returned. Based on the result the corresponding view will be rendered to the user.
We get the following benefits by using the interceptors.
  • Extremely flexiable.
  • Cleaner and focused Action classes.
  • Provides code readability and code reuse.
  • Testing process becomes easier.
  • We can add only the interceptors we need to the stack and customising the action processing for each request.
Now lets see the flow of the example. In the index.jsp page we forward the request to the "TestLogger" URL.
1.<META HTTP-EQUIV="Refresh" CONTENT="0;URL=TestLogger.action">
The TestLogger URL is mapped to the TestLoggerAction class in the struts.xml file.
01.<!DOCTYPE struts PUBLIC
02."-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
04. 
05.<struts>
06.<package name="test" extends="struts-default">
07.<action name="TestLogger" class="vaannila.TestLoggerAction">
08.<interceptor-ref name="logger" />
09.<result name="success">/success.jsp</result>
10.</action>
11.</package>
12.</struts>
Based on the mapping in the XML configuration file the user will be forwarded to the success page.
The following log messages are logged in the console.
01.package vaannila;
02. 
03.public class TestLoggerAction {
04. 
05.public String execute()
06.{
07.System.out.println("Inside Action");
08.return "success";
09.}
10.}

No comments:

Post a Comment