728x90
반응형
Feign으로 외부 API 호출에서 발생한 오류 해결
해결 방법 : Feign 엔드포인트 설정에 consumes, produces 추가
@PostMapping(value = "/api/message", consumes = "application/json", produces = "application/json")
@ResponseBody
Map<String, Object> apiMessage(
@RequestHeader("Authorization") String token
, @RequestHeader(value = "Content-Type") String contentType
, @RequestBody String param
);
파트너스 활동을 통해 일정액의 수수료를 제공받을 수 있음
반응형
'Spring > SpringCloud' 카테고리의 다른 글
[Open Feign] Feign을 이용한 간단한 예제 (0) | 2023.03.06 |
---|---|
[SCG] Spring Cloud Gateway 기본 설정 및 헤더, 공통 에러 처리 (0) | 2022.08.17 |
[Spring Kafka] Kafka를 이용한 간단한 실습 (0) | 2021.09.13 |
[Spring Cloud Config] Spring Cloud Config를 이용한 환경설정 관리 (0) | 2021.09.10 |