From 425092f8db0f20187852210992276cc47461aaa8 Mon Sep 17 00:00:00 2001 From: teddy Date: Wed, 21 Jan 2026 14:22:53 +0900 Subject: [PATCH] =?UTF-8?q?RestTemplateConfig=20=EC=98=B5=EC=85=98=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../cd/kamcoback/config/resttemplate/RestTemplateConfig.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main/java/com/kamco/cd/kamcoback/config/resttemplate/RestTemplateConfig.java b/src/main/java/com/kamco/cd/kamcoback/config/resttemplate/RestTemplateConfig.java index 1e067e11..5b1bb394 100644 --- a/src/main/java/com/kamco/cd/kamcoback/config/resttemplate/RestTemplateConfig.java +++ b/src/main/java/com/kamco/cd/kamcoback/config/resttemplate/RestTemplateConfig.java @@ -1,6 +1,5 @@ package com.kamco.cd.kamcoback.config.resttemplate; -import java.net.Proxy; import lombok.extern.log4j.Log4j2; import org.springframework.boot.web.client.RestTemplateBuilder; import org.springframework.context.annotation.Bean; @@ -15,7 +14,6 @@ public class RestTemplateConfig { @Bean public RestTemplate restTemplate(RestTemplateBuilder builder) { SimpleClientHttpRequestFactory f = new SimpleClientHttpRequestFactory(); - f.setProxy(Proxy.NO_PROXY); // 시스템/환경 프록시 무시 f.setConnectTimeout(2000); f.setReadTimeout(3000);