[ Java ]
[Java] Name for argument of type [java.lang.String] not specified, and parameter name information not available via reflection
2024-02-21 00:42:01
메일 인증을 위해 @PathVariable로 email 주소를 받아가도록 Controller 를 설정하고 @ApiOperation(value = "인증번호 확인 요청 메일 전송", notes = "") @RequestMapping("/user-auth/{email}") public void confirmMailSend(@PathVariable String email){ memberService.confirmMailSend(email); } 실제 호출을 해보니, 에러가 생겼다. 컴파일에서 오류가 생기지 않았는데 무슨 오류인가 보니, 파라미터의 이름을 찾지 못하는 문제였다. 이름과 파라미터 명이 동일한데도 문제가 생겼다. 2024-02-21T00:36:19.192+09:00 ERROR 101980 --- [..