[Spring MVC] 미디어 타입 ( MediaType )
웹의 동작은 request , response의 결과로 동작하게 된다. 클라이언트에서 request를 하면 서버에서는 response로 응답을 하게 된다. Spring의 관점에서 말하자면 Controller가 존재하고 GetMapping or RequestMapping등으로 요청을 받을수 있다. 그때 핸들러가 요청과 응답을 보낼때 특정 타입에만 응답하도록 만들수 있다. request에는 consumes, response에는 produces를 통해서 가능하다. package com.example.demo; import org.springframework.http.MediaType; import org.springframework.stereotype.Controller; import org.springfra..