오류가 도저히 맥락을 모르겠어요 ㅜㅜ
if(rightCode == true) { userDAO.setUserEmailChecked(userID); PrintWriter script = response.getWriter(); script.println(""); script.println("alert('인증에 성공했습니다.');"); script.println("location.href = 'index.jsp'"); script.println(""); script.close(); return; // if문 종료, 아래 else문을 실행시키지않고 빠져나감 ->unreachable code } else { PrintWriter script = response.getWriter(); script.println(""); script.println("alert('유효하지 않은 코드입니다.');"); script.println("location.href = 'index.jsp'"); script.println(""); script.close(); return; } %> //if ~ else문 사이에 있는 return이 들어간 오류네요.