vote up 0 vote down star

I was reading asp.net webpart technology which gives users some personalization abilities under some rules and tools of webparts.

are there something like webpart technology lib under java ?

flag

4 Answers

vote up 0 vote down

Haven't seen any frameworks which would directly support such functionality beyond the very basics, but there's a lot of frameworks which enable you to develop such a system if you want to. From other answers only the GWT and Portlet ones are actually valid so far.

If you want to find something compatible, you should start searching for web frameworks which support either of the Portlet API specifications (1.0 is JSR-168, 2.0 is JSR-286). Otherwise you just may as well roll out your own based on the web framework you find most comfortable to work with, whether that's GWT, Seam, Wicket, Tapestry, Vaadin...

link|flag
vote up 0 vote down
  • You can use the following stuff:
    • JSP
    • JSF (or any other implementation - Icefaces, Richfaces, MyFaces, etc)
    • Google Web Toolkit
    • Spring MVC
    • Template-based solution (Freemarker or Velocity)
link|flag
vote up 0 vote down

I don't know of any JSF or JSP implementations of this, and I don't think they even exist.

It is, however, possible to create such a thing with GWT from Google and GWT-Dnd . These let you create javascript webapplications, but you write them in Java.

Here's an example created with GWT-DND: http://www.wibokr.com

link|flag
vote up 0 vote down

There's always the ill-fated Portlet.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.