Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Recommended JSP tag libraries [closed]

Tags:

java

jsp

I'm looking for a collection of rich, well-written, stable, customizable and cool jsp 'controls'.

  • JSF has richfaces, primefaces, icefaces
  • GWT has ext-gwt, gwt-ext, advanced-gwt, on-gwt

Does something like this exist in JSP? Some tag library that has calendars, sortable and pageable tables, ajax autocompletes, pick-lists, partial requests, etc.

I know displaytag, ajax-tags and jspcontrols, but these aren't so complete as the ones listed above for the other display technologies.

If no such library exists, please advise which are the best libraries that cover parts of what I'm looking for.

like image 401
Bozho Avatar asked Jun 19 '10 15:06

Bozho


People also ask

How many different tag library we can use in JSP?

Under the JSP 1.1 specification, there can be only one tag library and only one TLD file in the JAR file.

What are tag libraries are identified on the JSP by?

The JSP taglib directive is used to define a tag library that defines many tags. We use the TLD (Tag Library Descriptor) file to define the tags. In the custom tag section we will use this tag so it will be better to learn it in custom tag.

What is the requirement of a tag library?

A tag library defines a collection of custom actions. The tags can be used directly by developers in manually coding a JSP page, or automatically by Java development tools. A tag library must be portable between different JSP container implementations.

What is Taglib URI in JSP?

The taglib directive declares that your JSP page uses a set of custom tags, identifies the location of the library, and provides means for identifying the custom tags in your JSP page. The taglib directive follows the syntax given below − <%@ taglib uri = "uri" prefix = "prefixOfTag" >


1 Answers

Have a look at SweetDEV RIA (which is/was used by a french bank), it looks close to what you're looking for. See the demo here.

Some other projects you might want to check (they don't cover all your needs though):

  • Rialto TagLib
  • Prize Tags
  • jQuery UI Taglib

See also:

  • Java Ajax Frameworks
  • Open Source JSP Tag Libraries
like image 88
Pascal Thivent Avatar answered Sep 30 '22 23:09

Pascal Thivent