Spring

[스프링부트와 AWS로 혼자 구현하는 웹 서비스] Chapter 3 실습 오류

KEMON 2020. 3. 24. 01:19
728x90

Posts등록 API 테스트 결과 아래와 같은 오류가 뜬다..

error while extracting response for type [class java.lang.Long] and content type [application/json;charset=UTF-8];

 

결론적으로 

@PutMapping("/api/v1/posts") --> @PostMapping("/api/v1/posts")

이렇게 바꾸면 해결이 가능!!

 

저자분께서 오타라고 하십니다.

 

출처 : https://github.com/jojoldu/freelec-springboot2-webservice/issues/173

 

[오류] p.109 JSON 파싱에러 · Issue #173 · jojoldu/freelec-springboot2-webservice

기존에 올라온 질문이 아닌지 먼저 검색해주세요! 어떤 오류인가요? 오류설명: Posts_등록된다() 테스트 실행시 Error while extracting response for type [class java.lang.Long] and content type [application/json;charset=UTF-8]; nested exception i...

github.com

 

728x90