使用Jersey Test Framework来定位其他文件中的API

时间:2016-02-03 18:12:20

标签: api jersey jersey-test-framework

我已阅读有关Jersey Test框架的the documentation并已成功使用JerseyTest的目标方法来访问我自己文件中的@Path注释端点。简化代码如下。

public class TestApplication extends ResourceConfig {
    public TestApplication() {
        registerClasses(TestService.class);
    }
}

@Override
protected Application configure() {
    return new TestApplication();
}

@Path("create")
public static class TestService {
    @POST
    @Path("testObj")
    @Consumes(APPLICATION_JSON)
    public static Response createTestObj(final TestObj testObj) {
        return Response.ok("testObj created").build();
    }
}

@Test
private void ensureObjectCreated() {
    JSONObject myObj = createNewObj();
    final Response response = target("create/testObj").request(APPLICATION_JSON)
                              .post(Entity.json(myObj.toString()));
    Assert.isEqual(response.status, 200);
}

现在我想在其他文件/目录中访问@Path注释端点。我该怎么办?问题可能是其他文件是实际的生产代码,所以我不能使类静态。但是,其他路径中的端点是可以访问的。

1 个答案:

答案 0 :(得分:0)

只需在资源配置中单独注册(取决于测试范围),或指定要使用packages方法扫描的包。

@Override
public ResourceConfig configure() {
    return new ResourceConfig()
        .register(SomeResource.class)
        .packages("your.resource.package.to.scan");
}

示例中的类是static的唯一原因是因为它是一个需要由框架实例化的内部类。

当您访问资源时,它不会包含根应用程序路径,只包含类上的@Path值以及任何子路径,就像上面的代码一样。