resttemplate比httpclient好在哪里
发布网友
发布时间: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>();
uriVariables.put("booking", "42");
uriVariables.put("hotel", "1");
System.out.println(template.expand(uriVariables));
will print:
http://example.com/hotels/1/bookings/42
2、postForObject(URI url, Object request, Class<T> responseType)
url中不用加参数
Create a new resource by POSTing the given object to the URL, and returns the representation found in the response.
The request parameter can be a HttpEntity in order to add additional HTTP headers to the request.