In servlet web application,
it’s always recommended to display a custom friendly error page instead of the default
long java plain exception code. In web.xml, you can configure a custom
error page to map a specified error code or exception :
web.xml
--------------------------------------------------------------------------------------
<error-page>
<error-code>404</error-code>
<location>/WEB-INF/pages/404.jsp</location>
</error-page>
<error-page>
<exception-type>java.lang.Exception</exception-type>
<location>/WEB-INF/pages/404.jsp</location>
</error-page>
--------------------------------------------------------------------------------------
[출처] - http://www.mkyong.com/spring-mvc/spring-mvc-exception-handling-example/
728x90
'Carpe Programming > jsp & spring & jstl' 카테고리의 다른 글
[Spring] ExceptionResolver 구성하기 (0) | 2012.04.16 |
---|---|
[maven] 자동으로 build 안될 경우 (0) | 2012.03.08 |
[jsp] 파일 업로드/다운로드 시 절대경로 구하기 (0) | 2012.01.27 |
[jsp] EL 의 간단한 사용 예 (0) | 2012.01.27 |
[jstl] jstl setting (0) | 2012.01.27 |