1

我正在对使用 Jersey 编写的 REST 服务进行验收测试。在我的服务中,我需要使用以下方法获取成功通过身份验证(BASIC)的用户的名称:

@Context private SecurityContext securityContext; //at class level

String username = securityContext.getUserPrincipal().getName()  //inside a resource

我正在使用 Jersey 客户端 API 并针对 Grizzly 服务器运行。我将服务器设置如下:

public class BaseResourceTest extends JerseyTest {

   public BaseResourceTest() throws Exception {

    super(new WebAppDescriptor.Builder("net.tds.adm.na.batchcut")
        .contextPath(baseUri.getPath())
        .contextParam("contextConfigLocation","classpath:testContext.xml")
        .initParam("com.sun.jersey.api.json.POJOMappingFeature",
            "true").servletClass(SpringServlet.class)
        .contextListenerClass(ContextLoaderListener.class)
        .build());

     }

.......

}

在我的测试中,我传递了一个授权标头,如下所示:

WebResource resource = resource().path(_url);
return resource.type(MediaType.APPLICATION_FORM_URLENCODED_TYPE).header(HttpHeaders.AUTHORIZATION, new String(Base64.encode("judge:smails"))).post(ClientResponse.class, _formData);

但是,在我的资源中,我在尝试获取用户名时得到了 NPE。我想我需要让服务器主动对领域进行身份验证,但我还没有找到如何配置服务器来执行此操作。有没有人有这方面的经验?

4

1 回答 1

2

不幸的是,Grizzly HttpServer 目前不支持身份验证。但是在这里您可以找到一个简单的示例,如何使用 Jersey 过滤器实现身份验证。

http://simplapi.wordpress.com/2013/01/24/jersey-jax-rs-implements-a-http-basic-auth-decoder/

于 2013-04-12T23:25:13.773 回答