我为我的应用程序创建了一个拦截器。我正在使用条纹框架。 这个拦截器拦截了浏览器的所有reuqest。我想要一个bean类绕过这个拦截器。
@Intercepts(LifecycleStage.BindingAndValidation)
public class XssInterceptor implements Interceptor
答案 0 :(得分:0)
您可以在拦截方法中使用以下代码:
@Override
public Resolution intercept(ExecutionContext context) throws Exception {
if (!(context.getActionBean() instanceof BypassedActionBean)) {
// XSS filtering
}
return context.proceed();
}