下载地址
官方下载地址:http://archive.apache.org/dist/jakarta/taglibs/standard/binaries/
下载 jakarta-taglibs-standard-1.1.2.zip 包并解压
1、在pom.xml文件中加入以下两个包
<dependency>
<groupId>apache-taglibs</groupId>
<artifactId>jstl</artifactId>
<version>1.1.2</version>
</dependency>
<dependency>
<groupId>apache-taglibs</groupId>
<artifactId>standard</artifactId>
<version>1.1.2</version>
</dependency>
2、将解压文件夹tld 下的需要引入的 tld 文件复制到 jstl。
3、在web.xml配置
<jsp-config>
<taglib>
<taglib-uri>http://java.sun.com/jsp/jstl/core</taglib-uri>
<taglib-location>/jstl/c.tld</taglib-location>
</taglib>
。。。。
</jsp-config>
4、在jsp页面的使用
和上面的uri是对应的
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>