SPR-3695: Added note on servlet/JSP/JSTL versions with reference to external blog article

This commit is contained in:
Luke Taylor 2009-11-11 14:03:09 +00:00
parent 2663ab9975
commit 89d997a5bc
1 changed files with 14 additions and 0 deletions

View File

@ -25,6 +25,20 @@
in the <interfacename>WebApplicationContext</interfacename>. Furthermore,
of course you need to write some JSPs that will actually render the
view.</para>
<note>
<para>
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
<ulink url="http://www.mularien.com/blog/2008/04/24/how-to-reference-and-use-jstl-in-your-web-application/">
How to Reference and Use JSTL in your Web Application</ulink> 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.
</para>
</note>
<section id="view-jsp-resolver">
<title>View resolvers</title>