OkHttp工具类
import com.ctrip.framework.apollo.ConfigService;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.chang.util.SpringContextUtil;
import lombok.extern.slf4j.Slf4j;
import okhttp3.*;
import org.apache.http.NameValuePair;
import org.apache.http.client.utils.URIBuilder;
import org.apache.http.message.BasicNameValuePair;
import java.io.IOException;
import java.net.URI;
import java.net.URISyntaxException;
import java.net.URL;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
@SuppressWarnings("all")
@Slf4j
public class OkHttpUtil {
private static final ObjectMapper mapper = new ObjectMapper();
private static String get(String requestPath, String jsonStr, List<NameValuePair> headList) throws IOException, URISyntaxException {
URIBuilder ub = new URIBuilder(requestPath);
Map< String, Object > map = JsonUtil.toMap(jsonStr);
map.forEach((k, v) -> {
try {
ub.addParameter(k, v instanceof String ? (String) v : mapper.writeValueAsString(v));
} catch (JsonProcessingException e) {
e.printStackTrace();
}
});
URL url = ub.build().toURL();
Request.Builder get = new Request.Builder()
.get()
.url(url);
headList.forEach(head -> get.addHeader(head.getName(), head.getValue()));
Request request = get.build();
OkHttpClient client = SpringContextUtil.getBean(OkHttpClient.class);
Response response = client.newCall(request).execute();
return response.body().string();
}
public static String post(String requestPath, String jsonStr, List<NameValuePair> headList) throws IOException, URISyntaxException {
RequestBody body = RequestBody.create(MediaType.parse(WhaeeAdsConstant.APPLICATION_JSON), jsonStr);
Request.Builder post = new Request.Builder()
.url(requestPath)
.post(body);
headList.forEach(head -> post.addHeader(head.getName(), head.getValue()));
Request request = post.build();
OkHttpClient client = SpringContextUtil.getBean(OkHttpClient.class);
Response response = client.newCall(request).execute();
return response.body().string();
}
public static String post(String requestPath, RequestBody body, List<NameValuePair> headList) throws IOException, URISyntaxException {
Request.Builder post = new Request.Builder()
.url(requestPath)
.post(body);
headList.forEach(head -> post.addHeader(head.getName(), head.getValue()));
Request request = post.build();
OkHttpClient client = SpringContextUtil.getBean(OkHttpClient.class);
Response response = client.newCall(request).execute();
return response.body().string();
}
}
OkHttp配置
import okhttp3.ConnectionPool;
import okhttp3.Interceptor;
import okhttp3.OkHttpClient;
import okhttp3.Request;
import okhttp3.Response;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import javax.net.ssl.*;
import java.io.IOException;
import java.security.KeyManagementException;
import java.security.NoSuchAlgorithmException;
import java.security.SecureRandom;
import java.security.cert.X509Certificate;
import java.util.concurrent.TimeUnit;
@Configuration
public class OkHttpConfig {
@Bean
public X509TrustManager x509TrustManager() {
return new X509TrustManager() {
@Override
public void checkClientTrusted(X509Certificate[] x509Certificates, String s) {
}
@Override
public void checkServerTrusted(X509Certificate[] x509Certificates, String s) {
}
@Override
public X509Certificate[] getAcceptedIssuers() {
return new X509Certificate[0];
}
};
}
@Bean
public SSLSocketFactory sslSocketFactory() {
try {
TrustManager[] trustManagers = new TrustManager[]{x509TrustManager()};
SSLContext sslContext = SSLContext.getInstance("SSL");
sslContext.init(null, trustManagers, new SecureRandom());
return sslContext.getSocketFactory();
} catch (NoSuchAlgorithmException | KeyManagementException e) {
e.printStackTrace();
}
return null;
}
@Bean
public ConnectionPool pool() {
return new ConnectionPool(100, 5, TimeUnit.MINUTES);
}
@Bean
public OkHttpClient okHttpClient() {
return new OkHttpClient.Builder()
.sslSocketFactory(sslSocketFactory(), x509TrustManager())
.hostnameVerifier(hostnameVerifier())
.retryOnConnectionFailure(false)
.connectionPool(pool())
.connectTimeout(60L, TimeUnit.SECONDS)
.readTimeout(60L, TimeUnit.SECONDS)
.followRedirects(true)
.addInterceptor(new RedirectInterceptor())
.build();
}
@Bean
public HostnameVerifier hostnameVerifier() {
return (s, sslSession) -> Boolean.TRUE;
}
public class RedirectInterceptor implements Interceptor {
@Override
public Response intercept(Chain chain) throws IOException {
okhttp3.Request request = chain.request();
Response response = chain.proceed(request);
int code = response.code();
if (code == 307) {
String location = response.headers().get("Location");
Request newRequest = request.newBuilder().url(location).build();
response = chain.proceed(newRequest);
}
return response;
}
}
}
Spring容器工具类
import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.stereotype.Component;
@Component
public class SpringContextUtil implements ApplicationContextAware {
private static ApplicationContext applicationContext;
@Override
public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
if (SpringContextUtil.applicationContext == null) {
SpringContextUtil.applicationContext = applicationContext;
}
}
public static ApplicationContext getApplicationContext() {
return applicationContext;
}
public static Object getBean(String name) {
return getApplicationContext().getBean(name);
}
public static <T> T getBean(Class<T> clazz) {
return getApplicationContext().getBean(clazz);
}
public static <T> T getBean(String name, Class<T> clazz) {
return getApplicationContext().getBean(name, clazz);
}
}