728x90
반응형
점 이후 사라짐
-
Spring Boot. @PathVariable with a dot(.) gets truncated개발 기록 2023. 7. 3. 16:21
이 내용은 스프링 문서에 있는 내용의 요약이다. https://www.baeldung.com/spring-mvc-pathvariable-dot @PathVariable은 컨트롤러에서 사용되는 어노테이션이다. // ex. controller @GetMapping("{email}") public ResponseEntity getByEmail(@PathVariable String email) { System.out.println(email); return ResponseEntity.ok(email); } 문제는 이메일과 같은 dot(.)을 포함하는 문자열이 들어가면 원하는대로 작동하지 않는다. (.) 이후의 문자열은 사라진다. abc@abc.com => abc@abc 어떻게 해야할까? 스프링 문서에 답이 있다..