RestTemplate 用法
RestTemplate简介
-
RestTemplate 是一个同步的web http客户端请求模板工具,spring框架做的抽象模板,
-
常见的http客户端请求工具有:
JDK的HttpURLConnection
apache的HttpClient
常见的 OkHttp
3.一般默认用的是:HttpURLConnection如下
//底层执行引擎httpUrlconnection RestTemplate tempalte=new RestTemplate(new HttpComponentsClientHttpRequestFactory());
4.RestTemplate常见的请求方式:Get和Post
Get请求方式方法有getforentity ,getforobject
getForEntity方法如下:
getForObject方法如下图
客户端的controller:
@GetMapping("{id}")
public HashMap show(@PathVariable("id")Integer id){
//空的入参
Map<Integer,User> map=new HashMap<>();
String u_url="http://server82/user/get/"+id;
ResponseEntity<HashMap> user=restTemplate.getForEntity(u_url,HashMap.class,map);
return user.getBody();
}
这是用的getForEntity()中的一个方法,这里没有写状态码,它与getForObject()方法的区别是这个方法可以返回状态码,在用这些方法时注意参数返回的类型
客户端的controller
@GetMapping("index2")
public Object All(){
String u_url="http://server82/user/list";
List<User> user=(List<User>) restTemplate.getForObject(u_url,List.class);
return user;
}
这是getForObject()的其中一个方法的使用
标签:http,url,RestTemplate,用法,getForObject,user,id From: https://www.cnblogs.com/yjl1214/p/16630939.html