RestTemplate如何设置Header、如何设置代理发起请求

一、restTemplate 设置Header

import com.alibaba.fastjson.JSONObject;
import org.springframework.http.HttpEntity;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpMethod;
import org.springframework.http.ResponseEntity;
import org.springframework.web.client.RestTemplate;

// 声明一个header变量
HttpHeaders headers = new HttpHeaders();  
// 设置 user-agent
headers.set("user-agent","");                     
// 设置为异步请求
headers.set("X-Requested-With","XMLHttpRequest");

HttpEntity entity = new HttpEntity(headers);
        
// ResponseEntity封装了返回的数据,包括了request、body、header等
ResponseEntity jsonObject = restTemplate.exchange("URL", HttpMethod.GET,entity, 
                       JSONObject.class);                
// 打印请求的获取到的数据
System.out.println(jsonObject.getBody());

 

二、设置使用代理发起请求

有时候需要爬取一些国外的网站的时候,在有 SSR 魔法上网的前提下,即使开启了全局模式或者设置了IDEA使用代理,在使用RestTemplate发起get或post请求的时候实际上并没有使用代理,会报 connection timeout 的错误。这个时候,需要进行设置restTemplate使用ssr代理

首先得有这个:

然后代码使用:

 // 设置ssr代理
RestTemplate restTemplate = new RestTemplate();
SimpleClientHttpRequestFactory reqfac = new SimpleClientHttpRequestFactory();
reqfac.setProxy(new Proxy(Proxy.Type.HTTP, new InetSocketAddress("127.0.0.1", 1080)));
restTemplate.setRequestFactory(reqfac);

 

 

 

 

你可能感兴趣的:(java)