본문 바로가기

트러블 슈팅

[Jmeter] HttpMediaTypeNotSupportedException: Content type 'text/plain;charset=UTF-8' not supported

Jmeter를 사용해서 POST 요청을 보낸 상황에서 다음과 같은 오류가 발생하였다.

원인

Jmeter 사용 시 Http Header의 Content-type을 설정하지 않으면 text/plain으로 요청을 보내게 된다.


해결

Http Header의 content-type을 application/json으로 바꾸면 된다.


방법

  • Http Header Manager를 선택한다.

  • Name: content-type | Value: application/json을 입력한 후 요청을 보내면 성공한다.