From 89d997a5bcc396d1bf666ccc8d7b11e092e32b75 Mon Sep 17 00:00:00 2001 From: Luke Taylor Date: Wed, 11 Nov 2009 14:03:09 +0000 Subject: [PATCH] SPR-3695: Added note on servlet/JSP/JSTL versions with reference to external blog article --- spring-framework-reference/src/view.xml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/spring-framework-reference/src/view.xml b/spring-framework-reference/src/view.xml index 0410b7dfa0..26b438071a 100644 --- a/spring-framework-reference/src/view.xml +++ b/spring-framework-reference/src/view.xml @@ -25,6 +25,20 @@ in the WebApplicationContext. Furthermore, of course you need to write some JSPs that will actually render the view. + + + + Setting up your application to use JSTL is a common source of error, + mainly cause by confusion over the different servlet spec., JSP and JSTL + version numbers, what they mean and how to declare the taglibs correctly. + The article + + How to Reference and Use JSTL in your Web Application provides a + useful guide to the common pitfalls and how to avoid them. Note that as of + Spring 3.0, the minimum supported servlet version is 2.4 (JSP 2.0 and JSTL 1.1), + which reduces the scope for confusion somewhat. + +
View resolvers -- GitLab