5

如何设置 aopMethodInterceptor以使用 Jersey 资源?

这是我尝试过的,遵循文档:

第 1 步 - 拦截服务

public class MyInterceptionService implements InterceptionService
{
    private final Provider<AuthFilter> authFilterProvider;

    @Inject
    public HK2MethodInterceptionService(Provider<AuthFilter> authFilterProvider)
    {
        this.authFilterProvider = authFilterProvider;
    }

    /**
     * Match any class.
     */
    @Override
    public Filter getDescriptorFilter()
    {
        return BuilderHelper.allFilter();
    }

    /**
     * Intercept all Jersey resource methods for security.
     */
    @Override
    @Nullable
    public List<MethodInterceptor> getMethodInterceptors(final Method method)
    {
        // don't intercept methods with PermitAll
        if (method.isAnnotationPresent(PermitAll.class))
        {
            return null;
        }

        return Collections.singletonList(new MethodInterceptor()
        {
            @Override
            public Object invoke(MethodInvocation methodInvocation) throws Throwable
            {
                if (!authFilterProvider.get().isAllowed(method))
                {
                    throw new ForbiddenException();
                }

                return methodInvocation.proceed();
            }
        });
    }

    /**
     * No constructor interception.
     */
    @Override
    @Nullable
    public List<ConstructorInterceptor> getConstructorInterceptors(Constructor<?> constructor)
    {
        return null;
    }
}

第 2 步 - 注册服务

public class MyResourceConfig extends ResourceConfig
{
    public MyResourceConfig()
    {
        packages("package.with.my.resources");

        // UPDATE: answer is remove this line
        register(MyInterceptionService.class);

        register(new AbstractBinder()
        {
            @Override
            protected void configure()
            {
                bind(AuthFilter.class).to(AuthFilter.class).in(Singleton.class);

                // UPDATE: answer is add the following line
                // bind(MyInterceptionService.class).to(InterceptionService.class).in(Singleton.class);
            }
        });
    }
}

但是,这似乎不起作用,因为我的任何资源方法都没有被拦截。这可能是因为我使用@ManagedAsync了所有资源吗?有任何想法吗?

另外,请不要建议一个ContainerRequestFilter. 请参阅此问题,了解为什么我不能使用一个来处理安全性。

4

1 回答 1

5

我认为与其调用 register(MyInterceptionService.class) 您可能希望添加到您的 configure() 语句中:

bind(MyInterceptionService.class).to(InterceptionService.class).in(Singleton.class)

我不确定它是否会起作用,因为我自己没有尝试过,所以你的结果可能会有所不同,哈哈

于 2014-03-09T01:08:04.553 回答