공부하는 블로그입니다!
궁금한 점은 댓글을 달아주세요!
(spring)spring-restful respones값 보낼 때 한글 깨짐 현상
spring rest api공부 중 postman으로 url을 날리고 해당하는 respones값을 받는데 한글부분에서 ???이런식으로 나타나는 문제가 있었다.
해결방법
servlet.xml파일에 밑의 코드를 추가해준다.
<mvc:annotation-driven>
<mvc:message-converters>
<!-- @ResponseBody Content-Type:application/json;charset=UTF-8 -->
<bean class="org.springframework.http.converter.StringHttpMessageConverter">
<property name="supportedMediaTypes">
<list>
<value>text/html;charset=UTF-8</value>
</list>
</property>
</bean>
</mvc:message-converters>
</mvc:annotation-driven>
Thank You For Reading