출처 내 인생의 옐로카드~ | 해피캐빈
원문 http://blog.naver.com/keg1254/60093784466

web.xml 하단에 아래 구문을 추가하면 된다.

 

<!-- 웹으로 접속한 사용자가 JSP 파일로 직접 접근할 수 없게 한다. -->
<security-constraint>
<web-resource-collection>
<web-resource-name>PreventViewingJSPs</web-resource-name>
<description>웹으로 접속한 사용자가 JSP파일로 직접 접근할 수 없도록 한다.</description>
<url-pattern>*.jsp</url-pattern>

<http-method>GET</http-method>
<http-method>POST</http-method>
</web-resource-collection>
<auth-constraint>
<role-name></role-name>
</auth-constraint>
</security-constraint>


'Jsp_Html' 카테고리의 다른 글

[Jsp] page 지시자  (0) 2010.12.30
[Jsp] 웹 서버와 WAS(Web Application Server)의 정의  (0) 2010.12.13
[Jsp] Excel 만들기  (0) 2010.12.07
[Jsp] IE Header 정보 확인  (0) 2010.11.24
[Jsp] File Upload  (0) 2010.11.22

+ Recent posts