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;
}
자바 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 |
댓글 영역