0

I want to use JSTL, however, there are 4 different JAR files on this Maven Repository.

i.e.: javax.servlet.jsp.jstl-api, jstl-api, jstl, and javax.servlet.jsp.jstl.wso2

So, my questions are:

  1. What are the differences between those JARs?
  2. Which one to include among those on our project?
xcode
  • 1,637
  • 3
  • 16
  • 25

2 Answers2

0

For JSTL include jstl-1.2 in WEB-INF lib folder and classpath, or if you are using maven you can use

<dependency>
    <groupId>jstl</groupId>
    <artifactId>jstl</artifactId>
    <version>1.2</version>
 </dependency>
Shubham Chopra
  • 1,678
  • 17
  • 30
-1

you can try the follwing

 <dependency>
   <groupId>jstl</groupId>
    <artifactId>jstl</artifactId>
   <version>1.2</version>
  </dependency>
<dependency>
<groupId>taglibs</groupId>
<artifactId>standard</artifactId>
<version>1.1.2</version>
</dependency>
张小刀
  • 1
  • 1