sys_debug
sys_debug

Reputation: 4003

JSP components libraries like primefaces

I there a famously used library of components such as Primefaces or Richfaces that is mainly designed to be used with JSP? And if not, then what are the possibility of using any of the aforementioned with JSP and drawbacks?

Upvotes: 0

Views: 3581

Answers (2)

Ken Chan
Ken Chan

Reputation: 90517

It seems that ZK JSP Tags is something you look for . It is a collection of JSP Tags built upon highly interactive ZK Ajax components. It follows standard JSP specifications and integrate seamlessly with other JSP tags and solutions.

Upvotes: 3

BalusC
BalusC

Reputation: 1109542

JSP is deprecated since JSF 2.0 and succeeded by Facelets. You shouldn't expect JSF 2.0 component library vendors to support JSP as well, that's almost double of development and maintenance work.

So if you're looking for component libraries supporting JSP, then you should be looking at JSF 1.x targeted component libraries. RichFaces for example has the 3.3.x as the latest JSF 1.2 compatible version.

Or, just upgrade yourself first and step over to Facelets.

Upvotes: 4

Related Questions