真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

SpringBootRestTemplate簡單包裝的示例分析

這篇文章將為大家詳細講解有關(guān)SpringBoot RestTemplate簡單包裝的示例分析,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

在巴南等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強發(fā)展的系統(tǒng)性、市場前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務(wù)理念,為客戶提供做網(wǎng)站、成都網(wǎng)站制作 網(wǎng)站設(shè)計制作定制網(wǎng)站,公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),品牌網(wǎng)站建設(shè),全網(wǎng)整合營銷推廣,外貿(mào)網(wǎng)站制作,巴南網(wǎng)站建設(shè)費用合理。

RestTemplate設(shè)計是為了Spring更好的請求并解析Restful風(fēng)格的接口返回值而設(shè)計的,通過這個類可以在請求接口時直接解析對應(yīng)的類。

在SpringBoot中對這個類進行簡單的包裝,變成一個工具類來使用,這里用到的是getForEntity和postForEntity方法,具體包裝的代碼內(nèi)容

如下:

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
* 網(wǎng)絡(luò)請求,RestTemplate工具類
*/
@Component
public class RestTemplateUtil {
	private RestTemplate restTemplate;
	/**
* 發(fā)送GET請求
* @param url
* @param param
* @return
*/
	public String GetData(String url, Map param){
		restTemplate=new RestTemplate();
		// 請勿輕易改變此提交方式,大部分的情況下,提交方式都是表單提交
		HttpHeaders headers = new HttpHeaders();
		headers.setContentType(MediaType.APPLICATION_FORM_URLENCODED);
		return restTemplate.getForEntity(url,String.class,param).getBody();
	}
	/**
* 發(fā)送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 requestEntity = new HttpEntity(param, headers);
		return restTemplate.postForEntity(url,param,String.class).getBody();
	}
	/**
* 發(fā)送POST 表單請求
* @param url
* @param param
* @return
*/
	public String PostFormData(String url,MultiValueMap param){
		restTemplate=new RestTemplate();
		// 請勿輕易改變此提交方式,大部分的情況下,提交方式都是表單提交
		HttpHeaders headers = new HttpHeaders();
		headers.setContentType(MediaType.APPLICATION_FORM_URLENCODED);
		return restTemplate.postForEntity(url,param,String.class).getBody();
	}
}

在控制類里面調(diào)用函數(shù),看看效果

@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 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 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;
}

關(guān)于“SpringBoot RestTemplate簡單包裝的示例分析”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。


網(wǎng)站題目:SpringBootRestTemplate簡單包裝的示例分析
文章源于:http://weahome.cn/article/jpgepj.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部