*.jsp 접근 막기
<!-- 브라우저로 접속한 사용자가 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> <!-- 여기에 role-name을 적어도 된다. 존재하지 않는 것으로 -->
</auth-constraint>
</security-constraint>
'Programming > Web' 카테고리의 다른 글
[Web] URI, URL, URN 이란? (0) | 2014.09.18 |
---|---|
[Web] Servlet/JSP Programming (0) | 2014.09.18 |
[Web] HTTP Protocol 과 REST (0) | 2014.09.02 |
[Web] HTML5 File API (0) | 2014.09.02 |
[Web] 웹 접근성 (0) | 2014.05.26 |