赞
踩
项目中使用restTemplate的时候总是容易找不到适配的方式 先综合各种使用场景整理如下:
- /**
- * post请求json数据(添加请求头)
- */
- public static void test1(){
- RestTemplate restTemplate = new RestTemplate();
- //创建请求头
- HttpHeaders headers = new HttpHeaders();
- headers.setContentType(MediaType.APPLICATION_JSON);
- String url = "http://localhost:8087/callBackFor";
- User student = new User("sansan",10);
- HttpEntity<User> entity = new HttpEntity<User>(student, headers);
- ResponseEntity<String> responseEntity = restTemplate.postForEntity(url, entity, String.class);
- String user = responseEntity.getBody();//{"msg":"调用成功!","code":1}
- System.out.println(user);
- }
- /**
- * post请求json数据(添加请求头)并传递表单参数
- */
- public static void test2(){
- RestTemplate restTemplate = new RestTemplate();
- //创建请求头
- HttpHeaders headers = new HttpHeaders();
- headers.setContentType(MediaType.APPLICATION_JSON);
- String url = "http://localhost:8087/callBackFor?id={id}";
- Map<String, String> params = new HashMap<String, String>();
- params.put("id", "123");
- User student = new User("sansan",10);
- HttpEntity<User> entity = new HttpEntity<User>(student, headers);
- ResponseEntity<String> responseEntity = restTemplate.postForEntity(url, entity, String.class, params);
- String user = responseEntity.getBody();//{"msg":"调用成功!","code":1}
- System.out.println(user);
- }
-
-
- /**
- * 上述方式的简化版本
- */
- String template = baseUrl + "/demo?app={0}&userId={1}";
- String url = MessageFormat.format(template,app,userId);
- return restTemplate.postForEntity(url,null,String.class);
- HttpHeaders headers = new HttpHeaders();
- List<String> cookies = new ArrayList<>();
- cookies.add("JSESSIONID=" + Strings.nullToEmpty(jsessionId));
- cookies.add("token=" + Strings.nullToEmpty(token));
- headers.put(HttpHeaders.COOKIE,cookies);
- HttpEntity request = new HttpEntity(null, headers);
- ResponseEntity<String> response = restTemplate.postForEntity(url, request, String.class);
- HttpHeaders headers = new HttpHeaders();
- headers.setContentType(MediaType.APPLICATION_FORM_URLENCODED);
- MultiValueMap<String, String> map = new LinkedMultiValueMap<String, String>();
- map.add("title", title);
- map.add("desc", desc);
- map.add("userid", toUserId);
- HttpEntity<MultiValueMap<String, String>> request = new HttpEntity<MultiValueMap<String, String>>(map, headers);
- ResponseEntity<String> response = restTemplate.postForEntity(url, request, String.class);
- /**
- * restTemplate.exchange post请求json数据(添加请求头)并传递表单参数
- * exchange可以发送HttpMethod.POST,DELE,GET,PUT请求;
- */
- public static void test3(){
- RestTemplate restTemplate = new RestTemplate();
- //创建请求头
- HttpHeaders headers = new HttpHeaders();
- headers.setContentType(MediaType.APPLICATION_JSON);
- String url = "http://localhost:8087/callBackFor?id={id}";
- //params是url中出现的路径变量
- Map<String, String> params = new HashMap<String, String>();
- params.put("id", "123");
- User student = new User("sansan",10);
- //entity包含请求的对象和消息头;
- HttpEntity<User> entity = new HttpEntity<User>(student, headers);
- ResponseEntity<String> responseEntity = restTemplate.exchange(url, HttpMethod.POST, entity, String.class, params);
- String user = responseEntity.getBody();//{"msg":"调用成功!","code":1}
- System.out.println(user);
- }
- HttpHeaders headers = new HttpHeaders();
- headers.setAccept(Arrays.asList(MediaType.APPLICATION_OCTET_STREAM));
- HttpEntity<String> entity = new HttpEntity<String>(headers);
- ResponseEntity<byte[]> response = restTemplate.exchange(url,HttpMethod.GET, entity, byte[].class);
- byte[] imageBytes = response.getBody();
- /**
- * post请求json数据(添加请求头) 直接传递jsonString数据
- */
- public static void test4(){
- RestTemplate restTemplate = new RestTemplate();
- //创建请求头
- HttpHeaders headers = new HttpHeaders();
- headers.setContentType(MediaType.APPLICATION_JSON);
- //也可以这样设置contentType
- //MediaType type = MediaType.parseMediaType("application/json; charset=UTF-8");
- //headers.setContentType(type);
- //加不加Accept都可以
- //headers.add("Accept", MediaType.APPLICATION_JSON.toString());
- String url = "http://localhost:8087/callBackFor";
- User student = new User("sansan",19);
- String jsonString = JSONObject.toJSONString(student);
- System.out.println(jsonString);//{"age":10,"name":"sansan"}
- HttpEntity<String> entity = new HttpEntity<String>(jsonString, headers);
- ResponseEntity<String> responseEntity = restTemplate.postForEntity(url, entity, String.class);
- String user = responseEntity.getBody();//{"msg":"调用成功!","code":1}
- System.out.println(user);
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。