[Spring] @PathVariable .(점) 이후의 내용이 사라질 경우 - Seonmi-Hwang/study GitHub Wiki

문제 상황

@RequestMapping("/member/detail/{email}")
public String method(@PathVarable String email) 

위와 같이 코드를 작성하였을 때
email에 [email protected] 을 넣었을 경우 [email protected] 만 들어오게 되고,
[email protected] 를 넣었을 경우 dodam@dongduk 만 들어오게 된다.

해결방법

매개변수 마지막 괄호 다음 '/' 추가

@RequestMapping("/member/detail/{email}/")

나머지 방법 들은 아래 url에 있다.

Ref

https://cho1-w0n-san9.tistory.com/28