diff --git a/spring-framework-reference/src/view.xml b/spring-framework-reference/src/view.xml
index 0410b7dfa0c..26b438071a4 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.
+
+