Where can I download JSTL jar

JavaJspJakarta EeJstl

Java Problem Overview


Does anyone know because all the places I've tried seem to timeout!

Java Solutions


Solution 1 - Java

You can download JSTL 1.1 here and JSTL 1.2 here.

See also:

Solution 2 - Java

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

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

Solution 3 - Java

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

Java.net will be modified, read this: http: //www.java.net/. So I think we have to wait. I also found: http: //java.net/projects/help/pages/RequestedProjects.

Maybe this is helpful.

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

Solution 4 - Java

http://archive.apache.org/dist/jakarta/taglibs/standard/binaries/

None of the mirrors work on the other page

Solution 5 - Java

You can downlod JSTL jar from this link

http://findjar.com/jar/javax/servlet/jstl/1.2/jstl-1.2.jar.html

Solution 6 - Java

If youre using Maven, here's something for your pom.xml file

<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>

Solution 7 - Java

Visit http://www.findjar.com/index.x?query=jstl+">Here to get your required jar files of JSTL.

and to get any of your required jar files visit http://www.findjar.com/index.x">HERE

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionDeanoView Question on Stackoverflow
Solution 1 - JavaBurkhardView Answer on Stackoverflow
Solution 2 - JavaMike M. LinView Answer on Stackoverflow
Solution 3 - JavarobrechtView Answer on Stackoverflow
Solution 4 - JavaSlyvrView Answer on Stackoverflow
Solution 5 - JavaDeepak LamichhaneView Answer on Stackoverflow
Solution 6 - JavaDashovskyView Answer on Stackoverflow
Solution 7 - JavaKedar1442View Answer on Stackoverflow