RETEasy 客户端 API

发布于 2024-12-21 20:26:54 字数 136 浏览 3 评论 0原文

Spring有一个非常好的REST客户端API:RestTemplate。实际上,它就像一个封装了一些引导代码的 Facade(与 JmsTemplate 和 JdbcTemplate 的方式相同)。 JBoss 的 RestEasy 中有类似的吗? 谢谢。

Spring has a very good client API for REST Client: RestTemplate. Effectively it is like a Facade which encapsulates some bootstrap code (in the same way as JmsTemplate and JdbcTemplate). Is there an equivalent in JBoss's RestEasy?
Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

盛夏尉蓝 2024-12-28 20:26:54

似乎有一个 - RESTEasy 客户端框架

There seems to be one - RESTEasy client framework

浮光之海 2024-12-28 20:26:54

文档中的进一步内容:
http://docs.jboss.org /resteasy/docs/2.3.0.GA/userguide/html_single/index.html#RESTEasy_Client_Framework

ClientRequest clientRequest = new ClientRequest(url);
ClientResponse<String> response = clientRequest.get(String.class);
String resteasystr = null;
if (response.getStatus() == 200) {
   resteasystr = response.getEntity();
   System.out.println("**** " + resteasystr);
}

谢谢。

Further on in the doc:
http://docs.jboss.org/resteasy/docs/2.3.0.GA/userguide/html_single/index.html#RESTEasy_Client_Framework

ClientRequest clientRequest = new ClientRequest(url);
ClientResponse<String> response = clientRequest.get(String.class);
String resteasystr = null;
if (response.getStatus() == 200) {
   resteasystr = response.getEntity();
   System.out.println("**** " + resteasystr);
}

thanks.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文