9

鉴于我有一个接口代表我的 RESET 服务使用

public interface BookResource {

     @GET
     @Path("/book/isbn/{isbn}/")
     @Produces(value = { MediaType.APPLICATION_XML })
     public ClientResponse<Book> getBookByIsbn(@PathParam("isbn") String isbn, @QueryParam("releaseStatus") String releaseStatus);

}

如果我需要在我的 web 应用程序中使用 Jersey 作为 JAX-RS 提供程序/REST 框架,我如何创建实际服务实现的代理。

这很容易通过 RESTEasy/Spring 集成来实现,这意味着我可以直接使用我的 JAX-RS 接口,而无需包装它和正确的样板来进行调用。

基本上我正在寻找与以下内容等效的球衣:-

<bean id="bookResource" class="org.jboss.resteasy.client.spring.RestClientProxyFactoryBean">
    <property name="serviceInterface" value="my.company.book.service.BookResource" />
    <property name="baseUri" value="http://localhost:8181/books-service/" />
</bean>

我刚刚花了一个小时在谷歌上搜索这个并继续回到泽西岛的标准客户端 API,这似乎需要大量的样板才能实现相同的目标。谁能指出我正确的方向?

4

2 回答 2

10

这个链接似乎更实用:http ://blog.alutam.com/2012/05/04/proxy-client-on-top-of-jax-rs-2-0-client-api/

// configure Jersey client
ClientConfig cc = new ClientConfig().register(JacksonFeature.class)
            .register(AnotherFeature.class)
            .register(SomeFilter.class);
Client resource = ClientBuilder.newClient(cc);
// create client proxy
ServiceInterface proxy = WebResourceFactory.newResource(ServiceInterface.class,
            resource.target(ServiceURI));

// invoke service
MyType result = proxy.someMethod();

对于 maven 项目,您需要以下依赖项:

    <dependency>
        <groupId>org.glassfish.jersey.ext</groupId>
        <artifactId>jersey-proxy-client</artifactId>
        <version>${jersey.version}</version>
    </dependency>
    <dependency>
        <groupId>org.glassfish.jersey.core</groupId>
        <artifactId>jersey-client</artifactId>
        <version>${jersey.version}</version>
    </dependency>
    <dependency>
        <groupId>org.glassfish.jersey.media</groupId>
        <artifactId>jersey-media-json-jackson</artifactId>
        <version>${jersey.version}</version>
    </dependency>
于 2013-10-10T08:58:13.297 回答
4

经过进一步的谷歌搜索后,我发现答案是,如果您使用的是 jersey 2.0,则可以使用 jersey proxy-client 模块,该模块可以在此处找到:-

https://jersey.java.net/project-info/2.0/jersey/project/jersey-proxy-client/dependencies.html

于 2013-06-12T13:11:52.007 回答