티스토리 뷰
https://stackoverflow.com/questions/5649329/utf-8-encoding-problem-in-spring-mvc
* 방법 1 - 실패
response.setCharacterEncoding("utf-8");
response.setContentType("text/plain;charset=UTF-8");
* 방법 2 - 성공
@RequestMapping(value = ".....", produces="text/plain;charset=UTF-8")
* 방법 3 - 안해봄
ViewResolver 에 contentType 속성 설정
* 방법 4 - 안해봄
StringHttpMessageConverter 설정
https://lahuman.github.io/korean-utf-8-String/
'SW개발 > Spring Framework' 카테고리의 다른 글
Caused by: java.io.FileNotFoundException: jmxremote.access (0) | 2020.04.14 |
---|---|
Controller 파라메터를 Map 으로 넘기기 (0) | 2020.03.27 |
@ModelAttribute 로 파라메터 받아왔는데 콤마(,) 만 나와 (2) | 2020.02.26 |
Spring boot (Security) 403 forbidden (0) | 2020.02.24 |
jsp (line: 43, column: 2) According to TLD or attribute directive in tag file, attribute var does not accept any expressions (0) | 2020.02.22 |