the default charset of @ResponseBody is iso-8859-1, how to change to utf8.


@RequestMapping(value = "/path", produces="text/plain;charset=UTF-8")

public @ResponseBody String handlePath() {

    .....

}


produces="text/plain;charset=UTF-8"를 사용하여 응답 페이지에 대한 UTF-8 인코딩이 가능하여 한글 깨짐을 방지 할 수 있음.


















'Framework & Platform > Spring' 카테고리의 다른 글

서버 에러 페이지 처리  (0) 2012.06.16
Spring - REST Supports  (0) 2012.06.08
Spring - ajax 연동 및 json 응답  (0) 2012.06.08
Spring - DispatcherServlet  (0) 2012.05.29
Spring - mvc - 각 URL별로 interceptor 적용하기  (0) 2012.05.29
Posted by linuxism
,