Setup JSTL in Tomcat 7

Setup JSTL in Tomcat 7
http://www.javadesk.co/server/JSTL_Setup.html

による情報によれば、

Setup JSTL in Tomcat 7

Tomcat 7 does not come with JSTL jar files by default. Setup requires a few steps.

Here we install the two necessary jar files in the Tomcat common lib directory. 
This will allow all webapps to have access to the JSTL Expression Language. 
You could opt to put the jar files in the WEB-INF directory.

First, locate the jar files for both JSTL API and JSTL Implementation. 
They are located on the JSP Standard Tag Library download page. 
Click into each repository and find the .jar file.


For example, 
the JSTL API jar to download is: 
javax.servlet.jsp.jstl-api-1.2.1.jar. 
This files md5 file is javax.servlet.jsp.jstl-api-1.2.1.jar.md5.

The JSTL Implementation jar to download is: 
javax.servlet.jsp.jstl-1.2.1.jar.
 This files md5 file is javax.servlet.jsp.jstl-1.2.1.jar.md5.

Note we are not looking for the sources or javadoc jar files. 
Copy the link locations for both locations and paste into your wget command.

だそうです。
DLはこちらからたどればおけ
http://jstl.java.net/download.html

[root@localhost download]# ls -ltr | grep javax
-rw-rw-r--. 1 hirasawa hirasawa  32522  5月 10 18:27 2013 javax.servlet.jsp.jstl-api-1.2.1.jar
-rw-rw-r--. 1 hirasawa hirasawa 407178  5月 10 20:25 2013 javax.servlet.jsp.jstl-1.2.1.jar
[root@localhost download]# md5sum javax*
f45c4f59399ca84f65ec4ff25072b63d  javax.servlet.jsp.jstl-1.2.1.jar
e81f03bad3a397e1a07561e4b00be00b  javax.servlet.jsp.jstl-api-1.2.1.jar
[root@localhost download]#