PackagesResourceConfig

PackagesResourceConfig

我试图拦截在Glassfish中运行的泽西岛的请求。

我创建了ContainerRequestFilter的实现

package mycustom.api.rest.security;

@Provider
public class SecurityProvider implements ContainerRequestFilter {
  @Override
  public ContainerRequest filter(ContainerRequest request) {
    return request;
  }
}

我的应用程序使用PackagesResourceConfig的子类启动。

Glassfish启动时,泽西岛找到我的提供者:
INFO: Provider classes found:
  class mycustom.rest.security.SecurityProvider

但是它永远不会碰到filter方法。我想念什么?

其他一切似乎都正常。我添加了几个ContextResolver提供程序来进行JSON映射,它们可以正常工作。请求可以很好地利用我的资源,它永远不会通过过滤器。

最佳答案

我不认为容器过滤器是作为提供程序加载的。我认为您必须设置响应过滤器属性。奇怪的是PackagesResourceConfig没有setProperty(),但是您可以重载getProperty()getProperties():

public Object getProperty(String propertyName) {
  if(propertyName.equals(ResourceConfig.PROPERTY_CONTAINER_REQUEST_FILTERS)) {
    return new String[] {"mycustom.rest.security.SecurityProvider"};
  } else {
    return super.getProperty(propertyName);
  }
}

public Map<String,Object> getProperties() {
  propName = ResourceConfig.PROPERTY_CONTAINER_REQUEST_FILTERS;
  Map<String,Object> result = super.getProperties();
  result.put(propName,getProperty(propName));
  return result;
}

实际上,更仔细地阅读javadocs似乎是首选方法:
myConfig.getProperties().put(ResourceConfig.PROPERTY_CONTAINER_REQUEST_FILTERS,
                              new String [] {"mycustom.rest.security.SecurityProvider"});

10-04 17:26