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

Popular posts from this blog

linux - Mailx and Gmail nss config dir -

c# - Is it possible to remove an existing registration from Autofac container builder? -

php - Mysql PK and FK char(36) vs int(10) -