From c81724d9a871f360c102a90de1bad9cd556ec0ca Mon Sep 17 00:00:00 2001 From: ulrich <undisclosed> Date: Sat, 07 Dec 2019 14:00:25 +0000 Subject: [PATCH] . --- readme.md | 23 +++++++++++++++++++++++ 1 files changed, 23 insertions(+), 0 deletions(-) diff --git a/readme.md b/readme.md index ccb5eed..b68bce2 100644 --- a/readme.md +++ b/readme.md @@ -30,3 +30,26 @@ ## ROOT Context Der Inhalt für `http://localhost:8080/` liegt in `CATALINA_BASE/webapps/ROOT`. + +### Fehler-Seiten + +Der Deployment Descriptor des ROOT Context, die Datei `CATALINA_BASE/webapps/ROOT/WEB-INF/web.xml`, enthält u.a. eine Deklaration von Standardfehlerseiten. Das sorgt im Fall eines Fehlers für die Anzeige einer neutralen Seite. + +``` +<error-page> + <exception-type>java.lang.Throwable</exception-type> + <location>/fehler.html</location> +</error-page> +<error-page> + <error-code>403</error-code> + <location>/nicht-erlaubt.html</location> +</error-page> +<error-page> + <error-code>404</error-code> + <location>/fehler.html</location> +</error-page> +<error-page> + <error-code>500</error-code> + <location>/fehler.html</location> +</error-page> +``` -- Gitblit v1.9.3