java – 拦截器销毁方法

我在struts2中创建了一个Authentication Interceptor.

我必须检查何时调用拦截器方法.

所以我在控制台上打印了方法名称.

这是我的代码

public class AuthenticationInterceptor implements Interceptor {

@Override
public void destroy() {
    System.out.println("AuthenticationInterceptor destroy");

}

@Override
public void init() {
     System.out.println("AuthenticationInterceptor init");

}

@Override
public String intercept(ActionInvocation actionInvocation) throws Exception    {
    System.out.println("AuthenticationInterceptor intercept");
    return actionInvocation.invoke();
   }
} 

这是我在struts.xml中的包.

<package name="portfolioSecure" namespace="/secure" extends="portfolio">
<interceptors>
<interceptor name="authenticationInterceptor" class="ask.portfolio.utility.AuthenticationInterceptor"></interceptor>
<interceptor-stack name="secureStack">
<interceptor-ref name="authenticationInterceptor"></interceptor-ref>
<interceptor-ref name="defaultStack"></interceptor-ref>

</interceptor-stack>
</interceptors>
<default-interceptor-ref name="secureStack"></default-interceptor-ref>
    <action name="login" class="ask.portfolio.actions.Login">
        <result name="success">/loginSuccess.jsp</result>
        <result name="error">/welcome.jsp</result>
    </action>
</package>

当我的应用程序启动时,AuthenticationInterceptor init会在控制台上打印出来
类似的AuthenticationInterceptor拦截也print.But AuthenticationInterceptor销毁即使我停止服务器也不会打印
我想知道拦截器破坏方法何时被调用,拦截器中的后处理是什么,它与destroy方法()有关.

最佳答案 当容器或应用程序停止或未部署时,destroy方法只调用一次.它呼吁让拦截器清理它已经分配的任何资源.

点赞