From fa32ce35fb1d30620d69be923f2095b29e4ae161 Mon Sep 17 00:00:00 2001 From: Brian Clozel Date: Mon, 20 Jun 2016 18:00:31 +0200 Subject: [PATCH] Document workaround for JSP limitation See gh-2893 --- spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc | 2 ++ 1 file changed, 2 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 ff8d35e6f97..2760030bbd5 100644 --- a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -2134,6 +2134,8 @@ packaged as an executable archive), there are some limitations in the JSP suppor * Creating a custom `error.jsp` page won't override the default view for <>. +<> should be used +instead. There is a {github-code}/spring-boot-samples/spring-boot-sample-web-jsp[JSP sample] so you can see how to set things up.