java springboot 集成 okHttp 发送get、post请求

在 Java Spring Boot 项目中可以很方便地集成OkHttp来发送GETPOST请求。以下是具体步骤:

一、添加依赖

在项目的pom.xml文件中添加OkHttp的依赖:

xml 复制代码
<dependency>
    <groupId>com.squareup.okhttp3</groupId>
    <artifactId>okhttp</artifactId>
    <version>4.11.0</version>
</dependency>

二、发送 GET 请求

  1. 创建一个工具类来封装OkHttp的请求方法:
java 复制代码
import okhttp3.OkHttpClient;
import okhttp3.Request;
import okhttp3.Response;

import java.io.IOException;

public class OkHttpUtil {

    public static String sendGetRequest(String url) throws IOException {
        OkHttpClient client = new OkHttpClient();
        Request request = new Request.Builder()
               .url(url)
               .build();
        try (Response response = client.newCall(request).execute()) {
            if (!response.isSuccessful()) {
                throw new IOException("Unexpected code " + response);
            }
            return response.body().string();
        }
    }
}
  1. 在需要发送GET请求的地方调用这个方法:
java 复制代码
import java.io.IOException;

public class Main {
    public static void main(String[] args) {
        try {
            String response = OkHttpUtil.sendGetRequest("https://api.example.com/data");
            System.out.println(response);
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

三、发送 POST 请求

  1. 在工具类中添加发送POST请求的方法:
java 复制代码
import okhttp3.MediaType;
import okhttp3.OkHttpClient;
import okhttp3.Request;
import okhttp3.RequestBody;
import okhttp3.Response;

import java.io.IOException;

public class OkHttpUtil {
    //... 前面的 sendGetRequest 方法

    public static String sendPostRequest(String url, String jsonData) throws IOException {
        OkHttpClient client = new OkHttpClient();
        MediaType mediaType = MediaType.parse("application/json; charset=utf-8");
        RequestBody body = RequestBody.create(jsonData, mediaType);
        Request request = new Request.Builder()
               .url(url)
               .post(body)
               .build();
        try (Response response = client.newCall(request).execute()) {
            if (!response.isSuccessful()) {
                throw new IOException("Unexpected code " + response);
            }
            return response.body().string();
        }
    }
}
  1. 在需要发送POST请求的地方调用这个方法:
java 复制代码
import java.io.IOException;

public class Main {
    public static void main(String[] args) {
        try {
            String jsonData = "{\"key\":\"value\"}";
            String response = OkHttpUtil.sendPostRequest("https://api.example.com/post-endpoint", jsonData);
            System.out.println(response);
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

在上述代码中,sendGetRequest方法用于发送GET请求,sendPostRequest方法用于发送POST请求并传入要发送的 JSON 数据。请确保在实际使用中处理可能出现的异常情况,并根据实际需求调整请求的 URL 和数据。

相关推荐
码云数智-大飞11 分钟前
C++ RAII机制:资源管理的“自动化”哲学
java·服务器·php
2601_9498165815 分钟前
Spring+Quartz实现定时任务的配置方法
java
计算机毕设指导61 小时前
基于SpringBoot校园学生健康监测管理系统【源码文末联系】
java·spring boot·后端·spring·tomcat·maven·intellij-idea
mysuking1 小时前
springboot与springcloud对应版本
java·spring boot·spring cloud
希望永不加班1 小时前
SpringBoot 数据库连接池配置(HikariCP)最佳实践
java·数据库·spring boot·后端·spring
迈巴赫车主1 小时前
蓝桥杯3500阶乘求和java
java·开发语言·数据结构·职场和发展·蓝桥杯
身如柳絮随风扬2 小时前
Lambda、方法引用与Stream流完全指南
java·开发语言
yaoyouzhong2 小时前
基于SpringBoot和PostGIS的云南与缅甸的千里边境线实战
java·spring boot·spring
姗姗的鱼尾喵2 小时前
Spring/SpringBoot 面试高频(含IOC/AOP/事务)
java·spring boot·面试
Mr_Xuhhh3 小时前
从理论到实践:深入理解算法的时间与空间复杂度
java·开发语言·算法