跨域请求httpclient
2021-06-12 08:01
标签:type default ann aop mapper manager shutdown mime pmi httpclient:是Apache工具包,util,它可以作为一个爬虫,直接爬取某个互联网上的页面。获取到时页面最终的源文件html。直接可以获取页面返回json。就可以直接在代码内部模拟发起http请求。请求的结果也被捕捉。在代码内部将获取的json,利用JacksonObjectMapper对象,把json字符串转成java对象。 与Spring框架整合: 1、引入jar支持 2、applicationContext-httpclient.xml: 3、把httpClient对象封装成伪service。在程序中注入,封装doGet,doPost,doJson- ---- HttpClientService: 4、在程序中注入httpClientService,直接调用doGet。 5、在applicationContext.xml中加入 httpclient.properties: 跨域请求httpclient 标签:type default ann aop mapper manager shutdown mime pmi 原文地址:http://www.cnblogs.com/tongxuping/p/7289675.html
dependency>
groupId>org.apache.httpcomponentsgroupId>
artifactId>httpclientartifactId>
version>4.3.5version>
dependency>
dependency>
groupId>org.apache.httpcomponentsgroupId>
artifactId>httpmimeartifactId>
version>4.3.1version>
dependency>
xml version="1.0" encoding="UTF-8"?>
beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd">
bean id="httpClientConnectionManager" class="org.apache.http.impl.conn.PoolingHttpClientConnectionManager" destroy-method="close">
property name="maxTotal" value="${http.pool.maxTotal}">property>
property name="defaultMaxPerRoute" value="${http.pool.defaultMaxPerRoute}">property>
bean>
bean id="httpClientBuilder" class="org.apache.http.impl.client.HttpClientBuilder" factory-method="create">
property name="connectionManager" ref="httpClientConnectionManager">property>
bean>
bean id="httpClient" factory-bean="httpClientBuilder" factory-method="build"/>
bean class="com.jt.common.util.IdleConnectionEvictor" destroy-method="shutdown">
constructor-arg index="0" ref="httpClientConnectionManager" />
constructor-arg index="1" value="600000" />
bean>
bean id="requestConfigBuilder" class="org.apache.http.client.config.RequestConfig.Builder">
property name="connectionRequestTimeout" value="${http.request.connectionRequestTimeout}"/>
property name="connectTimeout" value="${http.request.connectTimeout}"/>
property name="socketTimeout" value="${http.request.socketTimeout}"/>
property name="staleConnectionCheckEnabled" value="${http.request.staleConnectionCheckEnabled}"/>
bean>
bean id="requestConfig" factory-bean="requestConfigBuilder" factory-method="build" />
beans>
package com.jt.common.service;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import org.apache.http.NameValuePair;
import org.apache.http.client.config.RequestConfig;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.client.utils.URIBuilder;
import org.apache.http.entity.StringEntity;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.message.BasicNameValuePair;
import org.apache.http.util.EntityUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
public class HttpClientService {
private static final Logger LOGGER = LoggerFactory.getLogger(HttpClientService.class);
@Autowired(required=false)
private CloseableHttpClient httpClient;
@Autowired(required=false)
private RequestConfig requestConfig;
/**
* 执行get请求
*
* @param url
* @return
* @throws Exception
*/
public String doGet(String url,Map
#从连接池中获取到连接的最长时间
http.request.connectionRequestTimeout=500
#5000
http.request.connectTimeout=5000
#数据传输的最长时间
http.request.socketTimeout=30000
#提交请求前测试连接是否可用
http.request.staleConnectionCheckEnabled=true
#设置连接总数
http.pool.maxTotal=200
#设置每个地址的并发数
http.pool.defaultMaxPerRoute=100