상세 컨텐츠

본문 제목

getMethod()

프로그래밍/Java

by ........? 2012. 6. 18. 18:41

본문

request객체의 getMethod() 이용.

지정된 경로로 들어오지 않고 직접 특정 URL을 치고 들어올경우(GET) 처리에 유용.

String method = request.getMethod();
    if(method.equalsIgnoreCase("GET")){
        out.println("<script>");
        out.print("    alert('정상적인 경로로 접근해주세요.'); \n");
        out.print("    location.href = '/event/event_main.jsp'; \n");
        out.println("</script>");
        return;
    }


equalsIgnoreCase 설명보기

'프로그래밍 > Java' 카테고리의 다른 글

자바 null(널) 처리 스크랩  (0) 2013.03.21
== 와 equals 와 equalsIgnoreCase 차이  (0) 2012.06.18
Hashtable  (0) 2012.05.22
replace  (0) 2012.05.22
resonse.sendRedirect() & forward  (0) 2012.05.22

관련글 더보기

댓글 영역