which spring jar file is required jstl tags
In have xml file with
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
which sprin开发者_开发问答g jar file is required for it
None, you can download it manually from jstl.java.net or download.java.net/maven.
Alternatively if you're using a build system such as Apache Maven
you can get it using:
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
It is part of the Apache Taglibs ?
精彩评论