HTTP 요청 시간 초과 문제 해결

POST 또는 GET 요청 을 보 낼 때 시간 초과 처리 방법 을 되 돌려 줍 니 다.
캡 처 SocketTimeoutException|ConnectTimeoutException|ConnectionPoolTimeout 이상
세 가지 이상 설명:SocketTimeoutException:자바 패키지 에서 던 진 이상 입 니 다.이 는 Socket 에서 데 이 터 를 읽 는 시간 초과,즉 server 에서 응답 데 이 터 를 가 져 오 는 데 필요 한 시간 을 정의 합 니 다.Socket 을 읽 거나 받 을 때 Socket TimeoutException 을 던 집 니 다.ConnectTimeoutException:Apache 의 HttpClient 패키지 가 던 진 시간 초과 이상 입 니 다.네트워크 를 통 해 server 와 연결 하 는 시간 초과 시간 을 정의 합 니 다.Httpclient 패키지 에서 비동기 스 레 드 를 통 해 server 와 의 socket 연결 을 만 듭 니 다.이것 이 바로 이 socket 연결 의 시간 초과 입 니 다.
HTTP 서버 에 연결 하거나 HttpConnectionManager 관 리 를 기다 리 는 유효한 연결 시간 초과 오류 가 발생 하면 ConnectionTimeoutException 을 던 집 니 다.ConnectionPoolTimeout:Apache 의 HttpClient 패키지 에서 시간 초과 이상 을 던 져 ConnectionManager 가 관리 하 는 연결 풀 에서 연결 을 꺼 내 는 시간 초과 시간 을 정의 합 니 다.오류 가 발생 하면 Connection PoolTimeoutException 을 던 집 니 다.
요약:
SocketTimeoutException 이상 은 일반적인 이상 입 니 다.원본 HTTP 요청 이 든 아파 치 의 HttpClient 패키지 든 던 진 이상 에서 SocketTimeoutException 이상 을 캡 처 해 야 합 니 다.
예:

public static String doGet(String url, Object params, String contentType) {
 try {
 return HttpUtils.doGetSend(url, params, contentType);
 } catch (SocketTimeoutException | ConnectTimeoutException e) {
 e.printStackTrace();
 System.out.println("      :" + e.getMessage());
 } catch (IOException e) {
 e.printStackTrace();
 System.out.println("    ,    :" + e.getMessage());
 } catch (Exception e) {
 e.printStackTrace();
 }
 return null;
}
추가:자바 http 요청 보 내기(연결 시간 초과 처리)
업무 배경:
어떤 항목 은 제3자 회사 와 도 킹 한다.
업무 설명:
데이터 안전 을 고려 하여 서버 에서 요청 을 보 내 제3자 회사 가 제공 하 는 인 터 페 이 스 를 호출 해 야 합 니 다.그러나 이 장면 은 판매 유형 으로 응답 시간 이 빨 라 야 한다.그러면 응답 시간 초과 처 리 를 설정 해 야 한다.
그렇지 않 으 면 고객 에 게 원 을 그 리 며 한참 동안 돌아 다 니 게 하 는데 누가 사 겠 는가?
프로젝트 구조:
jdk1.7
spring4.2.9
자세 한 내용:

CloseableHttpClient httpclient = HttpClients.createDefault();
try {
  
 HttpPost httpPost = new HttpPost(    URL);
 //    
 RequestConfig requestConfig = RequestConfig.custom()  
  .setConnectTimeout(5000).setConnectionRequestTimeout(5000)  
  .setSocketTimeout(5000).build();  
 httpPost.setConfig(requestConfig);
  
 //  post    
 List<NameValuePair> nvps = new ArrayList<NameValuePair>(); 
 nvps.add(new BasicNameValuePair("attr1",    1)); 
 nvps.add(new BasicNameValuePair("attr2",    2));
 nvps.add(new BasicNameValuePair("attr3",    3));
 …… 
 httpPost.setEntity(new UrlEncodedFormEntity(nvps)); 
  
 //  post  
 CloseableHttpResponse response = httpclient.execute(httpPost);
  
 //              (0--200    )
      if(response.getStatusLine().getStatusCode() == HttpStatus.SC_OK){
        //      
       responseMessage = EntityUtils.toString(response.getEntity(),"utf-8");
        System.out.println(responseMessage);
        if(responseMessage!=null && !"".equals(responseMessage)){
         String data = new String(AESUtil.decrypt(Base64.decode(responseMessage), key),"UTF-8");
         
      String msg = translate_PRE(data,trans_type,transNo);
      result.put("msg", msg);
        }
        
      }else{
       System.out.println("       : "+ response.getStatusLine());
      
      }
 
 } catch (ConnectTimeoutException e) {
 System.out.println(api_type+"    ");
  
 } catch (ClientProtocolException e) {
 System.out.println("    ");
 
 } catch (Exception e) {
 e.printStackTrace();
 
 } finally {
 //    
 try {
       if(httpclient!=null){
       httpclient.close();
       }
      } catch (IOException e) {
     System.out.println(api_type+"      ");
      }
 }
 .setConnectTimeout(5000).setConnectionRequestTimeout(5000)  
  .setSocketTimeout(5000).build();  
 httpPost.setConfig(requestConfig);
  
 //  post    
 List<NameValuePair> nvps = new ArrayList<NameValuePair>(); 
 nvps.add(new BasicNameValuePair("attr1",    1)); 
 nvps.add(new BasicNameValuePair("attr2",    2));
 nvps.add(new BasicNameValuePair("attr3",    3));
 …… 
 httpPost.setEntity(new UrlEncodedFormEntity(nvps)); 
  
 //  post  
 CloseableHttpResponse response = httpclient.execute(httpPost);
  
 //              (0--200    )
      if(response.getStatusLine().getStatusCode() == HttpStatus.SC_OK){
        //      
       responseMessage = EntityUtils.toString(response.getEntity(),"utf-8");
        System.out.println(responseMessage);
        if(responseMessage!=null && !"".equals(responseMessage)){
         String data = new String(AESUtil.decrypt(Base64.decode(responseMessage), key),"UTF-8");
         
      String msg = translate_PRE(data,trans_type,transNo);
      result.put("msg", msg);
        }
        
      }else{
       System.out.println("       : "+ response.getStatusLine());
      
      }
 
 } catch (ConnectTimeoutException e) {
 System.out.println(api_type+"    ");
  
 } catch (ClientProtocolException e) {
 System.out.println("    ");
 
 } catch (Exception e) {
 e.printStackTrace();
 
 } finally {
 //    
 try {
       if(httpclient!=null){
       httpclient.close();
       }
      } catch (IOException e) {
     System.out.println(api_type+"      ");
      }
 }
 
이상 은 개인 적 인 경험 이 므 로 여러분 에 게 참고 가 되 기 를 바 랍 니 다.여러분 들 도 저 희 를 많이 응원 해 주시 기 바 랍 니 다.만약 잘못 이 있 거나 완전히 고려 하지 않 은 부분 이 있다 면 아낌없이 가르침 을 주시 기 바 랍 니 다.

좋은 웹페이지 즐겨찾기