We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
com.feilong.net.http.HttpClientUtil.getHttpFullInfo(HttpRequest, ConnectionConfig) 要支持自定义返回值类型转换
The text was updated successfully, but these errors were encountered:
private static GuangdianHttpFullInfo pushData(String logKey,String requestJsonString){ HttpFullInfo httpFullInfo = postAction(requestJsonString); //如果有异常 if (null != httpFullInfo.getUncheckedHttpException()){ return toGuangdianHttpFullInfo(httpFullInfo); } //--------------------------------------------------------------- HttpResponse httpResponse = httpFullInfo.getHttpResponse(); log.info( "logKey:[{}] requestJsonString:[{}] httpResponse:[{}]", logKey, JsonUtil.format(requestJsonString), JsonUtil.format(httpResponse)); //--------------------------------------------------------------- GuangdianHttpFullInfo guangdianHttpFullInfo = toGuangdianHttpFullInfo(httpFullInfo); guangdianHttpFullInfo.setGuangdianResponse(responseToBean(logKey, httpResponse.getResultString())); return guangdianHttpFullInfo; }
Sorry, something went wrong.
539502a
No branches or pull requests
com.feilong.net.http.HttpClientUtil.getHttpFullInfo(HttpRequest, ConnectionConfig) 要支持自定义返回值类型转换
The text was updated successfully, but these errors were encountered: