jsp 과제 중 jsp파일을 서블릿 파일로 바꾸는게 있는데요..ㅠㅠ
밑처럼 바꿨더니
HTTP Status 404 - /JSP_EXAM/4game.jsp
type Status report
message /JSP_EXAM/4game.jsp
description The requested resource is not available.
이렇게 뜨네요.....ㅠㅠㅠㅠㅠ
한번더와 확인 버튼은 만들어지는데.. action 쪽에 잘못쓴걸까요??
if(number==answer)
{
out.println("<form name = next method = get action = /JSP_EXAM/4game.jsp>");
out.println("<input type = submit value =한번 더>");
out.println("</form>");
out.println("<form name = next method = get action = 3game.jsp>");
out.println("<input type = submit value =확인>");
out.println("</form>");
}