페인클라이언트
-
4. 그레이들 멀티프로젝트 - 유레카서버와 페인클라이언트 Eureka FeignClient스프링개발자/301 - 아키텍처 2020. 8. 31. 03:31
[배경] 여러 어플리케이션간의 호출을 하는 방법은 여러가지가 있다. 가장 기본은 RestTemplate를 이용하는 방법이지만, 단점이 있다. 그에 해결책으로 쓸 수 있는 Eureka Server와 FeignClient의 조합에 대해 알아보자. 다음은 유레카 서버에 대한 설명 Eureka Server is an application that holds the information about all client-service applications. Every Micro service will register into the Eureka server and Eureka server knows all the client applications running on each port and IP address. ..