이것저것

Spring Boot - Postman 사용시 Response Body 한글 깨짐 본문

Spring Boot

Spring Boot - Postman 사용시 Response Body 한글 깨짐

nays111 2021. 1. 7. 04:43

[Spring 3.1 이하] 응답헤더에 Content-Type 지정

@RequestMapping(value = "/users",method=RequestMethod.POST)

 

 

[Spring 3.2  이상] content-type 지정

@RequestMapping(value = "/users", produces = "application/json; charset=utf8")

 

'Spring Boot' 카테고리의 다른 글

프록시와 연관관계 정리  (0) 2021.02.17
엔티티 매핑시 주의점  (0) 2021.01.15
Spring Boot - MVC  (0) 2021.01.07
Comments