Spring 集成或 Apache HTTP 客户端
我有一个 Spring 应用程序,需要调用基于 REST 的外部 API 来获取某些数据。
API 的数据格式为 JSON。
我的问题是以下哪一个选项更好且轻量级,可以进行外部 api 调用
Spring 集成(使用 ws:outbound-gateway)
Apache Commons HttpClient
请分享您的想法...
I have a spring application which requires to call REST based external API calls for some data.
The data format from the API is JSON.
My question is which one of the following options is better and light weight to make the external api calls
Spring integration (using ws:outbound-gateway)
Apache Commons HttpClient
Please share your thoughts...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Spring 附带了一个名为
RestTemplate
的类(javadoc) 应该会让这种事情变得简单。它隐藏了 HTTP 处理并提供了 REST 风格的操作界面。它包括对消息转换器的支持,用于与 JSON 之间的转换(在本例中,Spring 支持 Jackson 库)。Spring Integration 对此来说是巨大的杀伤力 - REST 本质上很简单。 Commons HttpClient 可以工作,但除此之外还需要您做额外的工作。
请参阅部分Spring 文档介绍了如何使用
RestTemplate
以及 JSON 消息转换。Spring comes with a class called
RestTemplate
(javadoc) that should make this sort of thing easy. It hides the HTTP handling and provides a REST-style operations interface. It includes support for message converters for converting to and from JSON (in this case, Spring has support for the Jackson library).Spring Integration is huge overkill for this - REST is inherently simple. Commons HttpClient would work, but leaves you with extra work to do on top of that.
See the section of the Spring docs on how to use
RestTemplate
, and the JSON message conversion.我用过 Spring 和泽西。 Jersey 通过使用
@GET
&@POST
& 等注释,可以轻松地使用 Spring 构建 RESTful Web 服务。@PUT
@DELETE
与 JAX-RS 库捆绑在一起。I have used Spring & Jersey. Jersey makes it easy to build RESTful Web services with Spring through the use of annotations like
@GET
&@POST
&@PUT
@DELETE
bundle with JAX-RS library.正如其他人提到的,Spring RestTemplate 和 Jersey Rest Client 都可以完成这项工作。我都用过。它们都与 Jackson 和 IIRC 配合得很好,如果找到的话它们会自动使用它(肯定是春天)。
我喜欢 Spring RestTemplate 的一个优点是您可以插入 Commons HTTP 作为传输。因此,如果您有一些奇怪的标头、cookie、超时、线程,您可以配置 Commons HTTP,然后将其放入 RestTemplate 中。
重点是,如果您正在考虑使用 Commons HTTP Client,那么正如 @Skaffman 所说,RestTemplate 对于更复杂的事情来说是显而易见的!
As the others have mentioned both Spring RestTemplate and Jersey Rest Client will do the job. I have used both. Both them work great with Jackson and IIRC they will automatically use it if found (spring for sure).
There is one advantage I like about Spring RestTemplate is that you can plugin Commons HTTP as the transport. So if you had some weird headers, cookies, timeout, threading you can configure Commons HTTP and then put it into the RestTemplate.
The point is if you are thinking about using Commons HTTP Client then as @Skaffman says RestTemplate is a no-brainer over something more complicated!