一、在pom.xml中添加依赖:

1
2
3
4
5
6
<!-- 添加jtl支持 -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>

二、在需要利用的地方需要加上标签
<%@ taglib prefix=”c”
uri=”http://java.sun.com/jsp/jstl/core“ %>
三、具体利用方法可以参考jsp常用用法

2017-04-06