From c1fcecb41598de4eba39dbb7e7876f27b307ac46 Mon Sep 17 00:00:00 2001 From: Brian Clozel Date: Mon, 20 Jun 2016 17:56:30 +0200 Subject: [PATCH] Document JSP limitation: error page customization Closes gh-2893 --- spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc index be2390d1dda..ec311ba5c68 100644 --- a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -1971,6 +1971,9 @@ packaged as an executable archive), there are some limitations in the JSP suppor * Undertow does not support JSPs. +* Creating a custom `error.jsp` page won't override the default view for +<>. + There is a {github-code}/spring-boot-samples/spring-boot-sample-web-jsp[JSP sample] so you can see how to set things up.