strust2自定义拦截器
Posted woxiang8023ni
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了strust2自定义拦截器相关的知识,希望对你有一定的参考价值。
自定义需要实现三个方法
init();
destroy();
和string intercept(ActionInvocation invocation) throws Exception;
具体可用方法如下
public abstract class AbstractIntecepter implements interceptor{
public void init(){}
public void destory(){}
public abstract String intercept(ActionInvocation invocation) throws Exception;}
以上是关于strust2自定义拦截器的主要内容,如果未能解决你的问题,请参考以下文章