[org.springframework.web.HttpMediaTypeNotSupportedException: Content type 'text/plain;charset=UTF-8' not supported]

공부는 혼자하는 거·2023년 6월 29일
0

에러모음

목록 보기
26/28

content-type이 text/plain 형식의 json 데이터를 처리해야 할 때, Spring Mvc Controller에서는

    @PostMapping(value = ["/sns/subscribe"], consumes = [MediaType.ALL_VALUE])
    fun consume(@RequestBody jsonData: String){
    	println(jsonData)
    }

참고

https://seeminglyjs.tistory.com/398

chatGpt

profile
시간대비효율

0개의 댓글