특정아이피 차단 썸네일형 리스트형 JSP 아이피 차단하기 String userIp = request.getRemoteAddr(); System.out.println("userIp : " + userIp); boolean isAllow = false; String allowIps[] = new String[] { "1.2" , "2.3.4.5" , "0:0:0:0:0:0:0:1" , "127.0.0.1" }; for(int i=0; i if(userIp.indexOf(allowIps[i]) != -1) { isAllow = true; break; } } if(!isAllow) {%> return; }%> 더보기 이전 1 다음