Struts 2 Interceptors Example

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.

public String intercept(ActionInvocation invocation) throws Exception
{
    //Pre processing
    logMessage(invocation, START_MESSAGE);

    String result = invocation.invoke();

    //Post processing
    logMessage(invocation, FINISH_MESSAGE);

    return result;
}
  • 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. 

<META HTTP-EQUIV="Refresh" CONTENT="0;URL=TestLogger.action">

 The TestLogger URL is mapped to the TestLoggerAction class in the struts.xml file.                                                              

<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">

<struts>
    <package name="test" extends="struts-default">
        <action name="TestLogger" class="vaannila.TestLoggerAction">
            <interceptor-ref name="logger" />
            <result name="success">/success.jsp</result>
        </action>
    </package>
</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.

package vaannila;

public class TestLoggerAction {

    public String execute()
    {
        System.out.println("Inside Action");
        return "success";
    }
}

         

Hope you understood the concept of interceptors. You can download this example by clicking the Download link below.

Source  :Download                                
Source + Lib :Download

Published at DZone with permission of its author, Meyyappan Muthuraman.

                                  

转载于:https://my.oschina.net/u/1412027/blog/203703

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值