Java 我在哪里可以下载 JSTL jar
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/292914/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Where can I download JSTL jar
提问by Deano
Does anyone know because all the places I've tried seem to timeout!
有谁知道因为我尝试过的所有地方似乎都超时了!
回答by Burkhard
回答by robrecht
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.
过去有类似的东西:https://jstl.dev.java.net/download.html。但是几天后,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.
Java.net 将被修改,请阅读:http://www.java.net/。所以我认为我们必须等待。我还发现: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/
另一种选择是查看 maven 存储库:http: //repo1.maven.org/maven2/javax/servlet/
回答by Mike M. Lin
http://jstl.java.net/download.html
http://jstl.java.net/download.html
It's been split into two separate JAR files: jstl-api.jar and jstl-impl.jar.
它被分成两个独立的 JAR 文件:jstl-api.jar 和 jstl-impl.jar。
回答by Slyvr
http://archive.apache.org/dist/jakarta/taglibs/standard/binaries/
http://archive.apache.org/dist/jakarta/taglibs/standard/binaries/
None of the mirrors work on the other page
没有镜子在另一页上工作
回答by Deepak Lamichhane
You can downlod JSTL jar from this link
您可以从此链接下载 JSTL jar
http://findjar.com/jar/javax/servlet/jstl/1.2/jstl-1.2.jar.html
回答by Dashovsky
If youre using Maven, here's something for your pom.xml file
如果您使用的是 Maven,这里有一些适用于您的 pom.xml 文件的内容
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>