Async
-
AsyncRestTemplate PATCH 메서드 유효하지 않은 요청JAVA 2022. 12. 30. 13:00
외부 API 연동 중 PATCH 메서드를 사용해서 통신해야 하는 일이 생겼다. 응답 결과가 중요하지 않았기 때문에, 응답을 기다리기 보다는,비동기 호출을 하기로 결정했다. 어떤 API를 활용할까 하다가 우리가 현재 쓰고 있는 버전이 Spring 4.x 버전이다보니, AsyncRestTemplate을 사용하기로 했다. 참고로, AsyncRestTemplate은 Spring5.0부터 Deprecated 되었다. https://docs.spring.io/spring-framework/docs/5.0.15.RELEASE/javadoc-api/deprecated-list.html https://docs.spring.io/spring-framework/docs/5.0.15.RELEASE/javadoc-api/org..