鉴于我有一个使用
代表我的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);
}
如果我需要在我的webapp中使用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,这似乎需要大量的锅炉板来实现相同的目标。有人能指出我正确的方向吗?
答案 0 :(得分:7)
此链接似乎更实用: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>
答案 1 :(得分:4)
经过一些进一步的谷歌搜索后,我发现答案是,如果您使用的是jersey 2.0,请使用可在此处找到的泽西代理客户端模块: -
https://jersey.java.net/project-info/2.0/jersey/project/jersey-proxy-client/dependencies.html