1. 程式人生 > >SpringBoot+RestTemplate 簡單包裝

SpringBoot+RestTemplate 簡單包裝

    RestTemplate設計是為了Spring更好的請求並解析Restful風格的介面返回值而設計的,通過這個類可以在請求介面時直接解析對應的類。

    在SpringBoot中對這個類進行簡單的包裝,變成一個工具類來使用,這裡用到的是getForEntity和postForEntity方法,具體包裝的程式碼內容

如下:

package cn.eangaie.demo.util;

 

import com.alibaba.fastjson.JSONObject;

import org.springframework.http.*;

import org.springframework.stereotype.Component;

import org.springframework.util.MultiValueMap;

import org.springframework.web.client.RestTemplate;

 

import java.util.Map;

 

/**

* @author Eangaie

* @date 2018/10/12 0012 下午 14:53

* 網路請求,RestTemplate工具類

*/

@Component

public class RestTemplateUtil {

 

private RestTemplate restTemplate;

 

/**

* 傳送GET請求

* @param url

* @param param

* @return

*/

public String GetData(String url, Map<String,String> param){

restTemplate=new RestTemplate();

// 請勿輕易改變此提交方式,大部分的情況下,提交方式都是表單提交

HttpHeaders headers = new HttpHeaders();

headers.setContentType(MediaType.APPLICATION_FORM_URLENCODED);

return restTemplate.getForEntity(url,String.class,param).getBody();

 

}

 

/**

* 傳送POST-JSON請求

* @param url

* @param param

* @return

*/

public String PostJsonData(String url,JSONObject param){

restTemplate=new RestTemplate();

HttpHeaders headers = new HttpHeaders();

headers.setContentType(MediaType.APPLICATION_JSON_UTF8);

headers.add("Accept", MediaType.APPLICATION_JSON.toString());

HttpEntity<JSONObject> requestEntity = new HttpEntity<JSONObject>(param, headers);

return restTemplate.postForEntity(url,param,String.class).getBody();

}

 

/**

* 傳送POST 表單請求

* @param url

* @param param

* @return

*/

public String PostFormData(String url,MultiValueMap<String,String> param){

restTemplate=new RestTemplate();

// 請勿輕易改變此提交方式,大部分的情況下,提交方式都是表單提交

HttpHeaders headers = new HttpHeaders();

headers.setContentType(MediaType.APPLICATION_FORM_URLENCODED);

return restTemplate.postForEntity(url,param,String.class).getBody();

 

}

}

    

    在控制類裡面呼叫函式,看看效果

 

 

@GetMapping("selectUser")

public Result selectUser(int id){

user=userService.selectById(id);

return ResultUtil.success(user,"查詢成功");

}

 

@GetMapping("testGetData")

public String testGetData(){

String url="http://localhost:81/sample/GetData?msg={msg}&author={author}";

Map<String,String> param=new HashMap<>();

param.put("msg","Hello");

param.put("author","彥傑");

return restTemplateUtil.GetData(url,param);

}

 

@GetMapping("testPostJsonData")

public String testPostJsonData(){

String url="http://localhost:81/sample/PostData";

JSONObject jsonObject=new JSONObject();

jsonObject.put("msg","hello");

jsonObject.put("author","彥傑");

return restTemplateUtil.PostJsonData(url,jsonObject);

 

}

 

@GetMapping("testPostFormData")

public String testPostFormData(){

String url="http://localhost:81/sample/PostFormData";

MultiValueMap<String,String> param=new LinkedMultiValueMap<>();

param.add("msg","Hello");

param.add("author","彥傑");

return restTemplateUtil.PostFormData(url,param);

 

}

 

@GetMapping("GetData")

public String getData(String msg, String author){

return msg+" "+author;

}

 

@PostMapping("PostData")

public String postData(@RequestBody JSONObject jsonObject){

String msg=jsonObject.getString("msg");

String author=jsonObject.getString("author");

return msg+" "+author;

}

 

@PostMapping("PostFormData")

public String PostFormData(String msg,String author){

return msg+" "+author;

}