http://localhost:8080/cameo/user/info/test@mail.com 로 요청을 보내준 이유 1. application.properties에서 server port 번호 확인해주기. // application.properties.xml server.port=8080 따라서 다음의 주소로 시작하게됨. http://localhost:8080 2. application.properties에서 context-path 경로 확인해주기. // application.properties.xml server.servlet.context-path=/cameo 따라서 다음의 주소가 됨. http://localhost:8080/cameo 3. Controller 파일에서 다음과 같이 RequestMap..