Reputation: 36654
I am maintaing rather old web application (around ten views, including a tabbed view) which uses the Woodstock component library, and would like to migrate it to a plain JavaServer Faces.
There are two options:
(of course the second option would happen in a separate version control branch, and changes will be merged to trunk only when they are tested)
I have also read JSF - Component Libraries, migrate or not migrate?, which is related to the Woodstock component library, and gives many reasons for a migration.
Do I understand correctly that Woodstock uses JSF 1 standards for UI / code binding so I only would need to care about replacing Woodstock components with corresponding components in a JSF 1 standard implementation?
Additional information: the web application currently uses JavaServer Pages (JSP) for thew views.
Upvotes: 1
Views: 1094
Reputation: 15768
Do I understand correctly that Woodstock uses JSF 1 standards for UI / code binding
Actually woodstock components creates JavaScript DOM , instead of HTML unlike JSF
I only would need to care about replacing Woodstock components with corresponding components in a JSF 1 standard implementation
Correct, but need not be JSF 1
Additionally, you can use any MVC framework for that matter through which you can convert your JSP elements (woodstock components) to the ones which generate HTML
Upvotes: 2