@PostMapping("/findPwd") @ResponseBody public ResponseEntity findPwd(String userName, String userId, String userMail) throws MessagingException { boolean checkUser = userService.findUserPwd(userName, userId, userMail); if (!checkUser) { return ResponseEntity.ok("사용자 정보를 찾을 수 없습니다."); } String tempPassword = emailAuthService.generateTemporaryPassword(); emailAuthService.sendTemporaryPassword(user..