Spring Cloud OpenFeign, Synchronization

Spring/Client 2023. 6. 17. 04:08

https://spring.io/projects/spring-cloud-openfeign#overview Spring Cloud OpenFeign This project provides OpenFeign integrations for Spring Boot apps through autoconfiguration and binding to the Spring Environment and other Spring programming model idioms. Features Declarative REST Client: Feign creates a dynamic implementation of an inte spring.io 선언적 웹 서비스 클라이언트 도구인 open feign 에 대해 알아보자.. Open F..

Article Thumbnail
Spring 6의 REST Clients 3가지

Spring/Client 2023. 3. 13. 22:07

이번 포스팅에서는 Spring 6 의 REST Clients 3가지를 예제를 통해 알아보겠다. Spring 공식 문서에 따르면 아래와 같이 소개하고 있다. The Spring Framework provides the following choices for making calls to REST endpoints: 1. RestTemplate - synchronous client with template method API. 2. WebClient - non-blocking, reactive client w fluent API. 3. HTTP Interface - annotated interface with generated, dynamic proxy implementation. 하나씩 예제로 다뤄보자.. ..

Article Thumbnail