开发者

which spring jar file is required jstl tags

开发者 https://www.devze.com 2023-02-13 11:31 出处:网络
In have xml file with <%@ taglib uri=\"http://java.sun.com/jsp/jstl/core\" prefix=\"c\" %> which sprin开发者_开发问答g jar file is required for itNone, you can download it manually from jstl

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 ?

0

精彩评论

暂无评论...
验证码 换一张
取 消