Where can I download JSTL jar

Does anyone know, because all the places I tried seem to time out!

+53
java java-ee jsp jstl
Nov 15 '08 at 18:58
source share
7 answers

You can download JSTL 1.1 here and JSTL 1.2 here .

See also:

  • JSTL Wiki Page
+70
Nov 15 '08 at 19:03
source share

http://jstl.java.net/download.html

It has been split into two separate JAR files: jstl-api.jar and jstl-impl.jar.

+6
Jul 17 '11 at 9:27 a.m.
source share

In the past, there was something like: https://jstl.dev.java.net/download.html. But after a few days, something happens on dev.java.net.

Java.net will be changed, read the following: http://www.java.net/. Therefore, I think we should wait. I also found: http://java.net/projects/help/pages/RequestedProjects.

Perhaps this is helpful.

Another option is to look into the maven repository: http://repo1.maven.org/maven2/javax/servlet/

+4
Dec 01 '10 at 7:07
source share
+4
Oct 13 '11 at 16:48
source share

You can disable JSTL jar from this link

http://findjar.com/jar/javax/servlet/jstl/1.2/jstl-1.2.jar.html 
+4
Oct 06
source share

If you are using Maven, here is something for your pom.xml file

 <dependency> <groupId>javax.servlet</groupId> <artifactId>jstl</artifactId> <version>1.2</version> </dependency> 
+1
Jan 01 '14 at 13:04 on
source share

Visit here to get the necessary jstl jar files.

and get any of your required jar files, visit HERE

0
Mar 19 '14 at 5:59
source share



All Articles