0

I am learning how to use JSTL in my application.

When i was ready download it from Internet, I found there are two kinds of JSTL. The first one is from http://tomcat.apache.org/taglibs.html, another is https://jstl.java.net/. Though files' names are different, it seems they both works.

What's the different between them? Which one should I use?

HuanRong
  • 3
  • 2
  • Marked for close as primarily opinion based. My opinion: Go with Tomcat version, since it seems to be actively maintained. – Andreas Sep 25 '15 at 00:58
  • @Andreas: It isn't completely opinion based. OP is asking for the difference between the two first and then asking for opinions. We can edit this question and make it better. – displayName Sep 25 '15 at 01:37

1 Answers1

3

Like as everything else in Java EE, JSTL is an abstract API. The concrete code is provided by the implementors. Oracle is one and Apache is another one.

Which one to choose is up to you.

See also:

Community
  • 1
  • 1
BalusC
  • 1,082,665
  • 372
  • 3,610
  • 3,555