글
Spring - @ResponseBody 응답 시 한글 인코딩(깨짐) 문제
S/Spring
2014. 7. 15. 19:57
기존에 다른 방식들도 있지만 이게 제일로 깔금한 우리 여우한테 실험해 본 결과 완벽함.
출처: http://linuxism.tistory.com/ 720
우리 fox 가 변했쪄요.
@RequestMapping(value="/fox", produces="text/html;charset=UTF-8" )
@ResponseBody
public String tiger() {
return "<html><head></head><body><h1>" + "Lion" + "<br>호랑이" + "</h1></body></html>";
}
출처: http://linuxism.tistory.com/
the default charset of @ResponseBody is iso-8859-1, how to change to utf8.
@RequestMapping(value = "/path", produces="text/plain;charset=
public @ResponseBody String handlePath() {
.....
}
produces="text/plain;charset=
우리 fox 가 변했쪄요.
@RequestMapping(value="/fox", produces="text/html;charset=
@ResponseBody
public String tiger() {
return "<html><head></head><body><h1>
}
'S > Spring' 카테고리의 다른 글
Spring RestTemplate 객체 사용시, url에 파라미터 전달 방법 (0) | 2015.05.14 |
---|---|
ContentNegotiatingViewResolver 와 ResponseBody 차이 (0) | 2014.07.15 |
Validate 종류들 (0) | 2014.06.21 |
Request processing failed; nested exception is org.apache.tiles.definition.DefinitionsFactoryException: I/O Error reading definitions.] with root cause (0) | 2014.06.14 |
Binding a List Request Parameter on Spring MVC (0) | 2014.06.03 |