Cara Menetapkan Halaman Ralat Lalai dalam web.xml
Dalam web.xml, anda boleh menggunakan
Servlet 3.0 atau Lebih Baru
Jika anda menggunakan Servlet 3.0 atau lebih baru, anda hanya boleh menambah
<code class="xml"><web-app ...> <error-page> <location>/general-error.html</location> </error-page> </web-app></code>
Servlet 2.5
Untuk Servlet 2.5, anda perlu menentukan setiap ralat HTTP biasa secara individu:
<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>
Untuk meringkaskan, untuk Servlet 3.0 atau lebih baharu, anda boleh menetapkan halaman ralat lalai secara langsung. Untuk Servlet 2.5, anda perlu mengendalikan setiap ralat HTTP biasa secara manual menggunakan
Atas ialah kandungan terperinci Bagaimana untuk Menetapkan Halaman Ralat Lalai dalam web.xml?. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!