Java/Spring 中用于与 Restful API 互动的工具
Tools in Java/Spring to interact with a Restful API
我正在构建一个需要访问外部 Restful API 的 Java 应用程序。
我需要在此 API 上执行 POST、GET 和 PUT。
在 PHP 中我使用了 curl,在 C# 中我使用了 HTTPClient。
我应该在 Java/Spring 中使用哪个工具?我是 Java 的新人,我有点迷路了。
使用RestTemplate 作为Spring发送HTTP方法的方式
RestTemplate offers templates for common scenarios by HTTP method, in addition to the generalized exchange and execute methods that support of less frequent cases
这里是 examples 使用 GET/ POST/ PUT 方法
我正在构建一个需要访问外部 Restful API 的 Java 应用程序。
我需要在此 API 上执行 POST、GET 和 PUT。
在 PHP 中我使用了 curl,在 C# 中我使用了 HTTPClient。
我应该在 Java/Spring 中使用哪个工具?我是 Java 的新人,我有点迷路了。
使用RestTemplate 作为Spring发送HTTP方法的方式
RestTemplate offers templates for common scenarios by HTTP method, in addition to the generalized exchange and execute methods that support of less frequent cases
这里是 examples 使用 GET/ POST/ PUT 方法