httpclient和resttemplate哪个性能好些
发布网友
发布时间:2022-05-02 10:19
我来回答
共1个回答
热心网友
时间:2022-06-19 06:10
restTemplate.postForObject两个方法
1、restTemplate.postForObject(url, null, String.class, params);
Example:
UriTemplate template = new UriTemplate("http://example.com/hotels/{hotel}/bookings/{booking}");
Map<String, String> uriVariables = new HashMap<String, String>();