java - 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 spring jar file required it
none, can download manually jstl.java.net or download.java.net/maven.
alternatively if you're using build system such apache maven
can using:
<dependency> <groupid>javax.servlet</groupid> <artifactid>jstl</artifactid> <version>1.2</version> </dependency>
Comments
Post a Comment