RestTemplate基本使用之HTTP实现GET请求和POST请求

一、GET请求实例

java 复制代码
    public static TianQi getTianQi(String city) {
        RestTemplate restTemplate = new RestTemplate();
        HashMap res = restTemplate.getForObject("http://www.tianqiapi.com/api/?version=v6&appid=15118158&appsecret=gVNnwva8&city=" + city, HashMap.class);

        if (res == null) {
            return null;
        }
        Object errCode = res.get("errcode");
        if (errCode != null) {
            log.error("获取天气错误,city:{},res:{}", city, JsonUtil.toJson(res));
            int code = (int) errCode;
            int error = 100;
            if (code == error) {
                return null;
            }
        }
        TianQi tianQi = new TianQi();
        tianQi.setCountry((String) res.get("country"));
        tianQi.setTem((String) res.get("tem"));
        tianQi.setTem1((String) res.get("tem1"));
        tianQi.setTem2((String) res.get("tem2"));
        tianQi.setCity((String) res.get("city"));
        tianQi.setWea((String) res.get("wea"));
        tianQi.setWeaImg((String) res.get("wea_img"));
        tianQi.setAirTips((String) res.get("air_tips"));
        tianQi.setDate((String) res.get("date"));
        tianQi.setUpdateTime((String) res.get("update_time"));
        return tianQi;
    }

二、POST请求实例

java 复制代码
package com.gzzoc.wisdom.personal.conv.business.helper;


import com.alibaba.fastjson.JSON;
import com.gzzoc.wisdom.common.model.personal.dto.ChatZOCDataDTO;
import com.gzzoc.wisdom.common.model.personal.dto.ChatZOCRequestDataDTO;
import com.gzzoc.wisdom.personal.conv.business.service.ConvDetailsService;
import lombok.extern.slf4j.Slf4j;
import org.springframework.http.HttpEntity;
import org.springframework.http.HttpHeaders;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Component;
import org.springframework.web.client.RestClientException;
import org.springframework.web.client.RestTemplate;

import java.io.BufferedReader;
import java.io.InputStream;
import java.nio.charset.StandardCharsets;

/**
 * class: LLMChatZOCClient
 *
 * @author Selig
 * @date 2024-10-17 14:27
 */
@Slf4j
@Component
public class LLMChatZOCClient {

    private final static String URL = "url地址";

    public static ResponseEntity<String> getChatZOCData(ChatZOCRequestDataDTO dto) {
        RestTemplate restTemplate = new RestTemplate();
        HttpHeaders headers = new HttpHeaders();
        //默认流式返回
//        headers.setContentType(MediaType.TEXT_EVENT_STREAM);
        headers.add("Accept", "application/json");
        headers.add("Content-type", "application/json");
        ChatZOCDataDTO requestBody = new ChatZOCDataDTO();
        if (dto.getStream() != null) {
            requestBody.setStream(false);
        }
        requestBody.setMessages(dto.getMessages());
        log.info("requestBody----"+JSON.toJSONString(requestBody));

        //3、组装请求头和参数
        HttpEntity<String> formEntity = new HttpEntity<>(JSON.toJSONString(requestBody), headers);
        //4、发起post请求
        ResponseEntity<String> response = null;
        try {
            response = restTemplate.postForEntity(URL, formEntity, String.class);
        } catch (RestClientException e) {
            e.printStackTrace();
        }

        //5、获取http状态码
        if (response != null){
            int statusCodeValue = response.getStatusCodeValue();
            log.info("httpCode-----"+statusCodeValue);
        }

        return response;
    }


}
相关推荐
程序员弘羽1 分钟前
C++ 第四阶段 内存管理 - 第二节:避免内存泄漏的技巧
java·jvm·c++
旷世奇才李先生5 分钟前
Tomcat 安装使用教程
java·tomcat
2501_9160137417 分钟前
用Fiddler中文版抓包工具掌控微服务架构中的接口调试:联合Postman与Charles的高效实践
websocket·网络协议·tcp/ip·http·网络安全·https·udp
勤奋的知更鸟19 分钟前
Java 编程之策略模式详解
java·设计模式·策略模式
qq_49244844621 分钟前
Java 访问HTTP,信任所有证书,解决SSL报错问题
java·http·ssl
爱上语文24 分钟前
Redis基础(4):Set类型和SortedSet类型
java·数据库·redis·后端
lifallen38 分钟前
Paimon vs. HBase:全链路开销对比
java·大数据·数据结构·数据库·算法·flink·hbase
深栈解码1 小时前
JMM深度解析(三) volatile实现机制详解
java·后端
liujing102329291 小时前
Day04_刷题niuke20250703
java·开发语言·算法
Brookty2 小时前
【MySQL】JDBC编程
java·数据库·后端·学习·mysql·jdbc