2010-06-02 17 views
12

BenTüm hataları web.xml'deki aynı sayfaya nasıl aktarabilirim?

<error-page> 
    <exception-type>java.lang.Exception</exception-type> 
    <location>/errors/error.jsp</location> 
</error-page> 

kullanmaya çalıştı ama 404 hataları yakalamak doesnt. Aynı sayfaya 404 vb. Hataları nasıl yakalarım? TÜM hata kodlarını aynı hata sayfası jsp'ye yakalamak istiyorum.

cevap

8

Bunu

<error-page> 
    <error-code>404</error-code> 
    <location>/errors/error.jsp</location> 
</error-page> 

UPDATE bir <error-code> etiketi ekleyebilirsiniz:

güncellenmiş soruya gereğince - Eğer web.xml''deki bireysel HER hata kodunu tanımlamak gerekir.

(

istediğiniz hata sayfalar eklemek hata 500s ama 404'ler Tomcat7 yılında

+2

Bunu biliyorum ama aynı sayfaya – newbie

+2

@newbie TÜM hata kodları yakalamak istiyor - böylece her biri için bir ve her hata kodu ekleyin hepsi aynı işaret sayfa. –

+0

@StephenC: Aynı şey için joker karakter yok mu? :/ –

0

yakalayacak <exception-type>java.lang.Throwable</exception-type> Kullanma (eski sürümlerini üzerinde işe yarayabilecek ama kontrol etmedi) örn 404.jsp, general_error.php vs.)

(web.xml eklediğiniz tüm spesifik sonra birinci ve tabii ki kod) uyarlamak.

<error-page> 
    <location>general_error.php</location> 
</error-page> 

<error-page> 
    <error-code>404</error-code> 
    <location>404.jsp</location> 
</error-page> 

<error-page> 
    <error-code>409</error-code> 
    <location>error_page.jsp?error=custom_message</location> 
</error-page> 
1

Bu kullanıyorum:

<error-page> 
    <exception-type>java.lang.Exception</exception-type> 
    <location>/pages/exception/sorry.html</location> 
</error-page> 

<error-page> 
    <error-code>403</error-code> 
    <location>/security/403</location> 
</error-page> 

<error-page> 
    <error-code>404</error-code> 
    <location>/security/404</location> 
</error-page>