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:
- rebuild it from scratch as a separate project, or
- migrate the existing views, one by one, in the main (production) version
(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.