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


}
相关推荐
dj24429457077 分钟前
JAVA中的Lamda表达式
java·开发语言
工业3D_大熊21 分钟前
3D可视化引擎HOOPS Luminate场景图详解:形状的创建、销毁与管理
java·c++·3d·docker·c#·制造·数据可视化
szc176724 分钟前
docker 相关命令
java·docker·jenkins
程序媛-徐师姐34 分钟前
Java 基于SpringBoot+vue框架的老年医疗保健网站
java·vue.js·spring boot·老年医疗保健·老年 医疗保健
yngsqq35 分钟前
c#使用高版本8.0步骤
java·前端·c#
尘浮生44 分钟前
Java项目实战II基于微信小程序的校运会管理系统(开发文档+数据库+源码)
java·开发语言·数据库·微信小程序·小程序·maven·intellij-idea
小白不太白9501 小时前
设计模式之 模板方法模式
java·设计模式·模板方法模式
Tech Synapse1 小时前
Java根据前端返回的字段名进行查询数据的方法
java·开发语言·后端
xoxo-Rachel1 小时前
(超级详细!!!)解决“com.mysql.jdbc.Driver is deprecated”警告:详解与优化
java·数据库·mysql