<!-- 로그인 세션 60분 x 3 = 3시간 설정 -->
<session-config>
<session-timeout>180</session-timeout>
</session-config>
<!-- 404, 500, 501 에러에대한 jsp error 페이지 설정 -->
<error-page>
<error-code>404</error-code>
<location>/WEB-INF/jsp/common/error/error404.jsp</location>
</error-page>
<error-page>
<error-code>500</error-code>
<location>/WEB-INF/jsp/common/error/error404.jsp</location>
</error-page>
<error-page>
<error-code>501</error-code>
<location>/WEB-INF/jsp/common/error/error404.jsp</location>
</error-page>
<!-- http 요청 메소드 제한 설정 : DELETE, PUT, OPTIONS, TRACE, PATCH 대한 메소드 막음 -->
<security-constraint>
<web-resource-collection>
<web-resource-name>NoAccess</web-resource-name>
<url-pattern>*.do</url-pattern>
<http-method>DELETE</http-method>
<http-method>PUT</http-method>
<http-method>OPTIONS</http-method>
<http-method>TRACE</http-method>
<http-method>PATCH </http-method>
</web-resource-collection>
<auth-constraint />
</security-constraint>
<!-- index 페이지 설정 -->
<welcome-file-list>
<welcome-file>welcome.jsp</welcome-file>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
'Server Enterprise > Spring' 카테고리의 다른 글
[STS] Spring Boot Restful 서버 구축 (Hello World) (0) | 2016.09.07 |
---|---|
[Excel] Spring MVC (Apache POI and JExcelApi) (0) | 2015.12.15 |
<스프링과 메이븐을 활용한 실전 프레임워크 설계와 구축> 소스코드 (0) | 2014.12.31 |
[Multi] 다중 삭제 (0) | 2014.11.03 |
[Servlet] redirect 와 forward 차이점 (0) | 2014.10.14 |