Spring Boot调用外部接口的方法有很多种,以下是三种常见的方法:
RestTemplate restTemplate = new RestTemplate();
String url = "http://外部接口地址";
String result = restTemplate.getForObject(url, String.class);
@FeignClient(name = "外部接口名称", url = "外部接口地址")
public interface ExternalService {
@GetMapping("/path")
String getData();
}
然后在需要调用外部接口的地方,通过@Autowired注入该接口,并调用相应的方法即可。
CloseableHttpClient httpClient = HttpClients.createDefault();
HttpGet httpGet = new HttpGet("http://外部接口地址");
CloseableHttpResponse response = httpClient.execute(httpGet);
String result = EntityUtils.toString(response.getEntity(), "UTF-8");
以上是三种常见的调用外部接口的方法,具体使用哪种方法取决于具体的需求和项目环境。