在Spring-Boot中从我的服务器调用另一个rest api
我想根据用户的特定要求从后端调用另一个Web-api。例如,我想调用 发送消息API,以便在事件中向特定用户发送消息。
是否 有什么方法来实现这一目标?如果没有,我该怎么做?
回答:
这是一个如何获取简单对象的代码示例:
private static void getEmployees(){
final String uri = "http://localhost:8080/springrestexample/employees.xml";
RestTemplate restTemplate = new RestTemplate();
String result = restTemplate.getForObject(uri, String.class);
System.out.println(result);
}
以上是 在Spring-Boot中从我的服务器调用另一个rest api 的全部内容, 来源链接: utcz.com/qa/408758.html