indispensible JSP tag libraries
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?
Asked by: Owen887 | Posted: 21-01-2022
Answer 1
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.
Answered by: Joyce397 | Posted: 22-02-2022Answer 2
The set of tags available in struts or your favourite framework. These tend to be almost indispensable. Agreed that displaytag is a fantastic library.
Answered by: Kellan244 | Posted: 22-02-2022Answer 3
The Core JSTL library, obviously.
Answered by: Cadie173 | Posted: 22-02-2022Similar questions
Still can't find your answer? Check out these amazing Java communities for help...
Java Reddit Community | Java Help Reddit Community | Dev.to Java Community | Java Discord | Java Programmers (Facebook) | Java developers (Facebook)