You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issues
유저 정보 변경을 위해 MultipartFile 과 String을 같이 @RequestPart로 전송 받지만 String의 한글이 깨지는 이벤트가 있다.
@PostMapping으로 바꿔봄 -> 실패
@PutMapping(consumes = "multipart/form-data;charset=UTF-8") 형식 명시 -> 실패
Target
@RequestPart의 뭔 짓을 해도 한글 받지 못함 오류
Issues
유저 정보 변경을 위해 MultipartFile 과 String을 같이 @RequestPart로 전송 받지만 String의 한글이 깨지는 이벤트가 있다.
@PostMapping으로 바꿔봄 -> 실패
@PutMapping(consumes = "multipart/form-data;charset=UTF-8") 형식 명시 -> 실패
Solution
@ReqeustPart 대신 @ModelAttribute로 수정하고 Dto로 받기로 함
The text was updated successfully, but these errors were encountered: