httpClient与openfeign

目录

介绍

maven坐标

发送请求步骤

发送get请求

​发送post请求 

介绍

是一个客户端编程的工具包,也就是在java程序中,可以构造http请求并且发送请求

maven坐标

httpclient

<dependency>

        <groupId>org.apache.httpcomponents</groupId>

        <artifactId>httpclient</artifactId>

</dependency>

fastjson 

<dependency>
    <groupId>com.alibaba</groupId>
    <artifactId>fastjson</artifactId>
</dependency>

发送请求步骤

创建HttpClient对象

创建 Http请求对象

创建 HttpClient的execute方法发送请求

发送get请求

/**
 * 使用httpclient发送get请求
 */
@Test
public void testGet() throws IOException {
    //创建httpclient对象
    CloseableHttpClient httpClient = HttpClients.createDefault();
    //创建请求对象
    HttpGet httpGet = new HttpGet("http://localhost:8080/user/shop/status");
    //发送请求,接收响应结果
    CloseableHttpResponse response = httpClient.execute(httpGet);
    //获取服务端返回的状态码
    int statusCode = response.getStatusLine().getStatusCode();
    System.out.println("服务端返回的状态码"+statusCode);

    HttpEntity entity = response.getEntity();
    String body = EntityUtils.toString(entity);
    System.out.println("服务端返回的数据为:"+body);

    //关闭资源
    response.close();
    httpClient.close();

}

发送post请求 

/**
 * 使用httpclient发送post请求
 */
@Test
public void testPOST() throws IOException {
    CloseableHttpClient httpClient = HttpClients.createDefault();

    HttpPost httpPost = new HttpPost("http://localhost:8080/admin/employee/login");
    //使用fastjson组装数据
    JSONObject jsonObject = new JSONObject();
    jsonObject.put("username", "admin");
    jsonObject.put("password", "123456");

    //提交请求体
    StringEntity entity = new StringEntity(jsonObject.toString());
    entity.setContentType("application/json");
    entity.setContentEncoding("UTF-8");
    httpPost.setEntity(entity);
    //发送请求
    CloseableHttpResponse response = httpClient.execute(httpPost);
    int statusCode = response.getStatusLine().getStatusCode();

    System.out.println("服务端返回的状态码"+statusCode);

    HttpEntity entity1 = response.getEntity();
    String body = EntityUtils.toString(entity1);
    System.out.println("服务端返回的数据为:"+body);

    //关闭资源
    response.close();
    httpClient.close();

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值