Spring MVC Controller 문자 인코딩 문제
3416 단어 springmvccontroller
여기에는 다음과 같은 몇 가지 솔루션이 요약되어 있습니다.
1. @ResponseBody 메모를 사용하지 않고 HttpServeletResponse를 사용하여 contentType 속성을 설정합니다.
@RequestMapping(value ="/rest/create/document")
public void create(Document document, HttpServletRespone respone) {
repoonse.setContentType("text/plain;charset='utf-8'");
response.write(" string");
}
2. Response Entity object로 돌아가 contentType을 설정합니다. 예:
@RequestMapping(value = "/rest/create/document") public ResponseEntity<String> create(Document document, HttpServletRespone respone) {
HttpHeaders responseHeaders = new HttpHeaders(); responseHeaders.add("Content-Type", "text/html; charset=utf-8");
Document newDocument = DocumentService.create(Document);
String json = jsonSerializer.serialize(newDocument);
return new ResponseEntity<String>(json, responseHeaders, HttpStatus.OK);
}
3. produces 속성 사용:
@RequestMapping(value = "/rest/create/document",produces= "text/plain;charset=UTF-8") //
@ResponseBody
public String create(Document document, HttpServletRespone respone) throws UnsupportedEncodingException {
Document newDocument = DocumentService.create(Document);
return jsonSerializer.serialize(newDocument);
}
@RequestMapping매개변수 바인딩(@RequestParam, @RequestBody, @RequestHeader, @PathVariable)
package org.springframework.web.bind.annotation;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import org.springframework.web.bind.annotation.Mapping;
import org.springframework.web.bind.annotation.RequestMethod;
@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Mapping
public @interface RequestMapping {
String name() default "";
String[] value() default {};
RequestMethod[] method() default {};
String[] params() default {};
String[] headers() default {};
String[] consumes() default {};
String[] produces() default {};
}
RequestMapping은 요청 주소의 매핑을 처리하는 데 사용되는 주석으로 클래스나 방법에 사용할 수 있습니다.클래스에 사용됩니다. 클래스의 모든 응답 요청을 표시하는 방법은 이 주소를 부모 경로로 합니다.RequestMapping 메모에는 6개의 속성이 있습니다.
1、value, method;
value: 요청한 실제 주소를 지정합니다. 지정한 주소는 URI Template 모드일 수 있습니다. (뒤에 설명할 것입니다.)
method: 요청한 method 유형, GET, POST, PUT, DELETE 등을 지정합니다.
2、consumes,produces;
consumes: 처리 요청의 제출 내용 유형(Content-Type)을 지정합니다. 예를 들어 응용 프로그램/json,text/html;
produces: 되돌아오는 내용 형식을 지정합니다. 리퀘스트 요청 헤더의 (Accept) 형식에 이 지정한 형식이 포함되어야만 되돌아옵니다.
3、params,headers;
params: 리퀘스트에 어떤 매개 변수 값을 포함해야 이 방법을 처리할 수 있도록 지정합니다.
headers: 지정request에 특정한 header 값을 포함해야 요청을 처리할 수 있습니다.
이상은 본문의 전체 내용입니다. 여러분의 학습에 도움이 되고 저희를 많이 응원해 주십시오.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
thymeleaf로 HTML 페이지를 동적으로 만듭니다 (spring + gradle)지난번에는 에서 화면에 HTML을 표시했습니다. 이번에는 화면을 동적으로 움직여보고 싶기 때문에 입력한 문자를 화면에 표시시키고 싶습니다. 초보자의 비망록이므로 이상한 점 등 있으면 지적 받을 수 있으면 기쁩니다! ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.