views:

307

answers:

3

Hi,

I'm interested to know what are the "must have" JSP tag libraries apart from JSTL. All I've found so far are

  • ccc - for accessing static constants in JSP (without scriptlet)
  • displaytag - for generating sophisticated HTML tables that includes data paging, grouping, sorting, exporting etc.

What other indispensible tag libs are out there?

Cheers, Don

+1  A: 

I use displaytag, and have been quite happy with it. The only other tag library I use is the one that comes with the Stripes Action Framework.

But my truly indispensable Tag library is the one we wrote.

At the office we must have over 50 of them by now for our internal framework.

The key behind them, though, is that they're JSP 2.0 Tag Files rather than class JSP Tags written in Java. Tag files are powerful and very easy to use.

Where classic JSP tag discouraged tag development because it was so difficult, Tag Files encourage it to where it's trivial for refactoring JSP pages now.

I think Tag Files and JSTL turned JSP as a page markup technology from mediocre to one of the best out there.

Will Hartung
+1  A: 

The set of tags available in struts or your favourite framework. These tend to be almost indispensable. Agreed that displaytag is a fantastic library.

Vincent Ramdhanie
A: 

The Core JSTL library, obviously.

matt b
Obviously yes, but I did say "apart from JSTL" in the question :)
Don