[Spring, Java] URL @가 %40으로 나오는 오류 해결
Roel Downey
오류 상황 오류 해결 방법 @GetMapping("/{email}") public MemberDto getEmail(@PathVariable String email) throws UnsupportedEncodingException { String decodeData = URLDecoder.decode(email, "UTF-8"); return memberReadService.getEmail(decodeData); } - URL은 ASCII 문자를 사용해 인터넷을 통해서만 전송한다. - URL로 받은 문자열을 URLDecoder 하여 UTF-8 로 변환한다.