jsp中使用el表达式用的jar包

时间:2021-12-04 13:19:39

项目中需要 jstl.jar  和 standard.jar 两个jar包。

由于本人用的是Maven项目工程,所以只需在pom.xml中添加以下内容即可。

<!-- https://mvnrepository.com/artifact/jstl/jstl -->
<dependency>
    <groupId>jstl</groupId>
    <artifactId>jstl</artifactId>
    <version>1.2</version>
</dependency>


<!-- https://mvnrepository.com/artifact/taglibs/standard -->
<dependency>
    <groupId>taglibs</groupId>
    <artifactId>standard</artifactId>
    <version>1.1.2</version>
</dependency>


JSP页面再引用<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>即可。