์ธ๋ถ API์ ์ฐ๊ฒฐํ๋ ๊ธฐ๋ฅ์ WebClient -> RestClient ๋ก ๋ณ๊ฒฝํ๋ ๊ฒ์ ์ด์ด์ FeignClient ๋ก ๋ณ๊ฒฝํ๊ฒ ๋์๋ค
์ด๋ฒ ๋ฆฌํฉํ ๋ง์๋ ๋ณ ์ด์ ๋ ์๋ค. ์ง์ ์ ์ฉํด๋ณด๋ฉด ๊ฐ ๊ธฐ์ ์ ํน์ง์ ๋ ์ ์ฒด๊ฐํ ์ ์์ง ์์๊นํด์..
FeingClient ์ ์ฉ ๋ฐฉ๋ฒ
1. OpenFeign ์์กด์ฑ ์ถ๊ฐ
< build.gradle >
dependencyManagement {
imports {
mavenBom "org.springframework.cloud:spring-cloud-dependencies:2024.0.0"
}
}
implementation 'org.springframework.cloud:spring-cloud-starter-openfeign'
FeingClient๋ฅผ ์ฌ์ฉํ๋ ค๋ฉด Spring Cloud ์์กด์ฑ๋ ํจ๊ฒ ์ถ๊ฐํด์ผ ํ๋ค.
Spring Boot ๋ฒ์ ์ ๋ง๋ Spring Cloud ๋ฒ์ ์ ํ์ธํ๊ณ ์ถ๊ฐํด์ค๋ค. ๋ฒ์ ํ์ธ
ํ์ฌ ํ๋ก์ ํธ์ boot ๋ฒ์ ์ '3.4.2' ์ด๋ฏ๋ก cloud๋ '2024.0.0'์ผ๋ก ์ถ๊ฐํ๋ค.
โ dependencyManagement์ dependencies ์ ์ฐจ์ด
- dependencyManagement๋ ์ค์ ๋ก ์์กด์ฑ์ ํ๋ก์ ํธ์ ์ถ๊ฐํ๋ ๊ฒ์ด ์๋ ์์กด์ฑ ๋ฒ์ ์ ๊ด๋ฆฌํ๋ ํ๋ซํผ์ด๋ BOM(Bill of Materials)์ import ํ๋ค.
- dependnecies๋ ํ๋ก์ ํธ์ ์ค์ ๋ก ์์กด์ฑ์ ์ถ๊ฐํ๋ค. ๋ฒ์ ์ ๋ช ์ํ์ง ์์ผ๋ฉด dependencyManagement์์ ์ ์๋ ๋ฒ์ ์ด ์ฌ์ฉ๋๋ค.
- ์ฆ, ์์์ dependencyManagement์ ๋ฃ์ Spring cloud๊ฐ dependencies์ openfeign ๋ฒ์ ์ ๊ด๋ฆฌํ๋ค.
- Spring Cloud 24.0.0 ์๋ ๋ค์ํ ๋ผ์ด๋ธ๋ฌ๋ฆฌ๋ค์ด ์๋๋ฐ ์ด ๋ผ์ด๋ธ๋ฌ๋ฆฌ๋ค์ ์ต์ ์ ํธํ ๋ฒ์ ์ ํ ๋ฒ์ ๊ด๋ฆฌํ ์ ์๋ ๊ฒ์ด๋ค. ๊ฐ๊ฐ์ ๋ผ์ด๋ธ๋ฌ๋ฆฌ๋ง๋ค ๋ฒ์ ์ ๊ด๋ฆฌํ์ง ์์๋ ๋๋ค.

2. OpenFeign ์ค์
2-1. OpenFeign์ ์ฌ์ฉํ๋ ค๋ฉด ๋ฉ์ธ ํด๋์ค์ @EnableFeignClients ์ด๋ ธํ ์ด์ ์ ๋ฌ์์ฃผ์ด์ผ ํ๋ค.
ํ์ฌ ์ฐ๋ฆฌ ํ๋ก์ ํธ๋ ์ค์ ํ์ผ์ ๋ถ๋ฆฌํด๋ ๊ตฌ์กฐ์ด๊ธฐ ๋๋ฌธ์ global ๋๋ฉ์ธ์ ์ค์ ํ์ผ์ ๋ถ๋ฆฌํ๋ค.
๊ทธ๋ฆฌ๊ณ ๋ฉ์ธ ํด๋์ค์ @EnableFeignClients ๋ฅผ ์ ์ฉํ๋ฉด @WebMvctest๋ @DataJpaTest๋ก ์งํํ๋ ํ ์คํธ๋๋ ๋์ผํ๊ฒ ์ ์ฉ๋๊ธฐ ๋๋ฌธ์ ํ ์คํธ๊ฐ ๋ ๋ฌด๊ฑฐ์์ง ์๋ ์๋ค.
@Configuration
@EnableFeignClients("com.ioteam.order_management_platform")
public class OpenFeignConfig {
}
@EnableFeignClients ์๋ ์ธํฐํ์ด์ค๋ฅผ ์์ฑํ ์์น๋ฅผ ์ ์ด์ฃผ๋ฉด ๋๋ค. ๋๋ ํ๋ก์ ํธ์ ํ์ฅ์ฑ์ ๊ณ ๋ คํด์ ๋๋ฉ์ธ ์ง์ ์ ํจํค์ง๋ก ์ค์ ํ๋ค.
์ด๋ ๊ฒํ๋ฉด Springdl ํด๋น ํจํค์ง์ ๊ทธ ํ์ ํจํค์ง์์ @FeignClient ์ด๋ ธํ ์ด์ ์ด ๋ถ์ ์ธํฐํ์ด์ค๋ฅผ ์ฐพ์ ๊ตฌํ์ฒด๋ฅผ ์์ฑํ๋ค.
๋ง์ฝ ๊ฒฝ๋ก๋ฅผ ์ค์ ํ์ง ์์ผ๋ฉด @EnableFeignClients ๊ฐ ์ ์ธ๋ ํด๋์ค์ ํจํค์ง๋ง ์ค์บ ๋์์ด ๋๋ค.
2-2. FeignClient ์ธํฐํ์ด์ค ๊ตฌํ
@FeignClient(name = "GeminiAiService", url = "${gemini.api.url}")
public interface GeminiAiService {
@PostMapping("/")
GeminiResponseDto requestGemini(@RequestParam("key") String apiKey, @RequestBody
GeminiRequestDto requestBody);
}
์ด๋ ธํ ์ด์ ์ผ๋ก @FeignClient ๋ฅผ ๋ถ์ฌ์ฃผ๊ณ , name๊ณผ url์ ์์ฑํ๋ค.
- name ์์ฑ : ํ์ ์์ฑ์ผ๋ก FeignClient์ ๊ณ ์ ์๋ณ์ ์ญํ ์ ํ๋ค.
- ์๋น์ค ๋์ค์ปค๋ฒ๋ฆฌ๋ฅผ ์ฌ์ฉํ ๊ฒฝ์ฐ ํธ์ถํ ์๋น์ค ์ด๋ฆ์ผ๋ก ์ฌ์ฉ๋๋ค.
- url ์์ฑ : FeignClient๊ฐ HTTP ์์ฒญ์ ๋ณด๋ผ url์ ์ง์ ํ๋ค.
- url ์์ฑ์ด ์ง์ ๋๋ฉด, ์๋น์ค ๋์ค์ปค๋ฒ๋ฆฌ๋ฅผ ์ฌ์ฉํ์ง ์๊ณ ์ด url๋ก ์ง์ ์์ฒญ์ ๋ณด๋ธ๋ค.
์์ธํ ๋ด์ฉ์ Spring Cloud ๊ณต์ ๋ฌธ์๋ฅผ ์ฐธ๊ณ ํ๋ฉด ๋๋ค.
์์ฒญ์ ๋ณด๋ด๋ ๋ฉ์๋๋ Spring์์ ์ฌ์ฉํ๋ ๊ฒ๊ณผ ๊ฐ๋ค.
restClient๋ฅผ ์ฌ์ฉํ์ ๋ json ํํ๋ฅผ ๋ง๋ค๊ธฐ ์ํด Map์ผ๋ก ๋ณด๋ผ ๋ฐ์ดํฐ๋ฅผ ์์ฑํ๋๋ฐ feignClient๋ DTO ํํ๋ก ๋ณด๋ผ ์ ์์ ๊ฒ ๊ฐ๋ค๊ณ ํ์๋ถ์ด ์๋ ค์ฃผ์ ์ DTO๋ก ๋ณด๋๋ค. ์ ๋๋ค. ๊ตณ
retry๋ fallback ์ต์ ๋ ์ถ๊ฐํ ์ ์๋๋ฐ ์ถํ์ ์ถ๊ฐํด๋ด์ผ๊ฒ ๋ค.
์ฐธ๊ณ
https://docs.spring.io/spring-cloud-openfeign/docs/current/reference/html/#netflix-feign-starter
Spring Cloud OpenFeign
Feign is a declarative web service client. It makes writing web service clients easier. To use Feign create an interface and annotate it. It has pluggable annotation support including Feign annotations and JAX-RS annotations. Feign also supports pluggable
docs.spring.io
https://khdscor.tistory.com/128
OpenFeign์ ํตํ ์ธ๋ถ API (With Spring Boot)
๋ค์ด๊ฐ๊ธฐ ์ต๊ทผ ํ๋ก์ ํธ๋ฅผ ์งํํ๋ฉด์ ๋น์ฆ๋์ค ๋ก์ง์ ์ํํ๋ ๋์ค ์ธ๋ถ API๋ฅผ ํธ์ถํด์ผ ํ๋ ๊ธฐ๋ฅ์ ๊ตฌํํด์ผ ํ๋ ๊ฒฝ์ฐ๊ฐ ์์๋ค. RestTemplate, WebClient ๋ฑ ๋ค์ํ๊ฒ ์๊ฒ ์ง๋ง, Spring Data Jpa
khdscor.tistory.com
'TIL' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
๋ฉํฐ ๋ชจ๋ ํ๋ก์ ํธ (multi module) ๊ฐ๋ (0) | 2025.03.10 |
---|---|
๋ฐ์ดํฐ๋ฒ ์ด์ค ํธ๋์ญ์ ๊ฒฉ๋ฆฌ ์์ค๊ณผ ๊ทธ์ ๋ฐ๋ฅธ ์ด์ ํ์ (์์ฝํธ) (0) | 2025.03.04 |
FeignClient vs RestClient (0) | 2025.02.28 |
PageableArgumentResolver๋ฅผ ํ์ฉํ @Pageable ํ์ด์ง ์ฌ์ด์ฆ ์ ํ (0) | 2025.02.24 |
WebClient์ RestTemplate ๊ทธ๋ฆฌ๊ณ RestClient (0) | 2025.02.21 |