web.xml에서 기본 오류 페이지를 설정하는 방법
web.xml에서
Servlet 3.0 이상
Servlet 3.0 이상을 사용하면 다음
<code class="xml"><web-app ...> <error-page> <location>/general-error.html</location> </error-page> </web-app></code>
Servlet 2.5
Servlet 2.5의 경우 각 일반적인 HTTP 오류를 개별적으로 지정해야 합니다.
<code class="xml"><error-page> <!-- Missing login --> <error-code>401</error-code> <location>/general-error.html</location> </error-page> <error-page> <!-- Forbidden directory listing --> <error-code>403</error-code> <location>/general-error.html</location> </error-page> <error-page> <!-- Missing resource --> <error-code>404</error-code> <location>/Error404.html</location> </error-page> <error-page> <!-- Uncaught exception --> <error-code>500</error-code> <location>/general-error.html</location> </error-page> <error-page> <!-- Unsupported servlet method --> <error-code>503</error-code> <location>/general-error.html</location> </error-page></code>
요약하자면, Servlet 3.0 이상에서는 기본 오류 페이지를 직접 설정할 수 있습니다. Servlet 2.5의 경우 별도의
위 내용은 web.xml에서 기본 오류 페이지를 설정하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!