* the default charset of @ResponseBody is iso-8859-1, how to change to utf8.출처: http://linuxism.tistory.com/720 @RequestMapping(value = "/path", produces="text/plain;charset=UTF-8")public @ResponseBody String handlePath() { .....} produces="text/plain;charset=UTF-8"를 사용하여 응답 페이지에 대한 UTF-8 인코딩이 가능하여 한글 깨짐을 방지 할 수 있음. GET 방식 인자 한글 처리(tomcat server.xml) POST 방식 인자 한글 처리(web.xml) - Filter 추가 charact..