utf-8
-
[Spring] RestTemplate 한글 깨짐programming/Spring 2022. 2. 26. 16:02
Spring의 RestTemplate을 이용해서 API를 호출할 때, 한글이 제대로 등록이 안될 때가 있다. 그럴 땐 아래와 같이 인코딩을 설정해서 해결해 볼 수 있다. RestTemplate restTemplate = new RestTemplate(); restTemplate.getMessageConverters() .add(0, new StringHttpMessageConverter(StandardCharsets.UTF_8)); ** 출처 https://stackoverflow.com/questions/29392422/how-can-i-tell-resttemplate-to-post-with-utf-8-encoding How can I tell RestTemplate to POST with UTF-8 ..
-
[Spring] 스프링&JSP 한글 깨짐programming/Spring 2019. 8. 1. 22:41
스프링을 프로젝트로 만들고 바로 시작했을 때의 화면이다. 처음 프로젝트를 만들면 home.jsp 파일이 자동 생성되는데 Hello world! The time on the server is ${serverTime}. 이런 식으로 생겼을 것이다. 여기에 한글이 제대로 나오게 하려면 아래와 같이 charset과 pageEncoding을 UTF-8로 적어주면 된다. 그러면 아래와 같이 한글이 정상적으로 나온다. charset과 pageEncoding을 2개씩 적는 이유와, 차이점에 대해선 다음에...