小编典典

在Spring-Boot中从我的服务器调用另一个rest api

spring-boot

我想根据用户的特定要求从后端调用另一个Web-api。例如,我想调用 Google FCM 发送消息API,以便在事件中向特定用户发送消息。

是否 改造 有什么方法来实现这一目标?如果没有,我该怎么做?


阅读 452

收藏
2020-05-30

共1个答案

小编典典

这是一个如何获取简单对象的代码示例:

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);
}
2020-05-30