[Spring, Java] URL @가 %40으로 나오는 오류 해결
by Roel Downey728x90
반응형
오류 상황
오류 해결 방법
@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 로 변환한다.
728x90
반응형
'Web > Spring' 카테고리의 다른 글
[IntelliJ IDEA Community] 인텔리제이 커뮤니티로 Web 개발하기(1) (0) | 2020.12.18 |
---|---|
[Spring] Spring JDBC (0) | 2020.11.17 |
[Spring] java.lang.IllegalStateException: Found multiple @SpringBootConfiguration annotated classes (0) | 2020.11.12 |
[Spring] Spring Boot에서 WAS 변경(tomcat을 undertow 변경하기) (0) | 2020.08.21 |
[Spring] Spring Boot 2.3, Web-starter doesn't bring Validation-starter anymore (0) | 2020.07.28 |
블로그의 정보
What doing?
Roel Downey