条带bean类中的旁路拦截器

时间:2015-05-07 04:40:40

标签: java stripes intercept

我为我的应用程序创建了一个拦截器。我正在使用条纹框架。 这个拦截器拦截了浏览器的所有reuqest。我想要一个bean类绕过这个拦截器。

@Intercepts(LifecycleStage.BindingAndValidation)
public class XssInterceptor implements Interceptor

1 个答案:

答案 0 :(得分:0)

您可以在拦截方法中使用以下代码:

@Override
public Resolution intercept(ExecutionContext context) throws Exception {
    if (!(context.getActionBean() instanceof BypassedActionBean)) {
        // XSS filtering
    }
    return context.proceed();
}