@ResponseBody를 사용하여 Spring MVC에서 응답 콘텐츠 유형 사용자 정의
Spring MVC에서 @ResponseBody 주석은 자동으로 Content-Type 헤더를 추가합니다. HTTP 응답에. 그러나 기본 Content-Type은 "application/json"입니다. 특정 메소드에 대한 Content-Type을 사용자 정의하려면 @RequestMapping 주석의 생산 속성을 사용할 수 있습니다.
예를 들어 UTF-8 인코딩으로 일반 텍스트 응답을 반환하려는 경우 다음을 사용할 수 있습니다. 다음 컨트롤러 메소드:
@RequestMapping(value = "/gethelp", method = RequestMethod.GET, produces = "text/plain; charset=UTF-8") public @ResponseBody String handleGetHelp() { return "Some help text"; }
이 예에서 presents 속성은 gethelp 메소드가 UTF-8 인코딩을 사용하여 일반 텍스트 응답을 생성하도록 지정합니다.
참고: StringHttpMessageConverter가 Spring 구성에 메시지 변환기로 등록되어 있는지 확인하세요. 다음 빈을 추가하면 됩니다:
<bean class="org.springframework.http.converter.StringHttpMessageConverter"> <property name="supportedMediaTypes" value="text/plain; charset=UTF-8" /> </bean>
위 내용은 @ResponseBody를 사용하여 Spring MVC에서 응답의 Content-Type을 어떻게 사용자 정의할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!