스프링 MVC 활용 - 요청 매핑하기 3부 미디어 타입

Jinseok Lee·2022년 10월 26일
0

특정 데이터 타입의 요청만 처리하는 핸들러

@RequestMapping(consumes="application/json")

Content-Type 헤더로 필터링 된다

특정 타입의 응답을 만드는 핸들러

@RequestMapping(produces="application/json")
// Accept 헤더로 필터링 (...오묘하다네?)

메모

  • content-type이 안 맞는 경우 415 unsupported media type http status code응답
  • accept 헤더가 불일치하는 경우 406 not acceptable http status code 응답
profile
전 위메프, 이직준비중

0개의 댓글