简单记录下springboot 接收接口实现。

用到的基本都是APACHE的 HttpClient 发起的post请求。

现在SpringBoot中Spring 推荐 RestTemplate来发起post请求。
有时间我会贴在下面完整RestTemplate来发起的请求,但大致其实逻辑相同,使用框架包装下head信息、设定内容格式、设定内容编码。

使用HttpClient发起POST请求

String url=url;//调用的接口地址
	String name = Student.getName().toString;
	String sex = Student.getSex().toString;
	String age = Student.getAge().toString;

	JSONObject json = new JSONObject();
	json.put("name",name);
	json.put("sex",sex);
	json.put("age",age);
	String temp = json.toJSONString();
	StringEntity entity = new StringEntity(temp."utf-8");//包装String 编码为utf-8
	entity.setContentType("application/json"); //设定内容格式
	HttpPost httpPost = new HttpPost(url); //构建请求对象
	httpPost.setEntity(entity);// 包装请求参数
	httpPost.addHeader("ContentType","application/json;charset=utf-8");//设定请求头部

	HttpClient httpclient = HttpClientBuilder.create().build();
	//获取创建请求客户端 
	HttpResponse response = hettpclient.execute(httpPost);
	//http客户端发起请求

	if(response.getStatusLine().getStatusCode()==200){
	//判定返回状态码 是否是200 (成功)
	String conResult =EntityUtils.toString(response.getEntity());
	//重请求体中获取返回值
	loger.info(" 写入日志文件");
	return conResult
}