Can somebody recommend any framework to facilitate CRUD development in JSF 2.0?
Aspects I value most:
- As lightweight as possible; limited dependencies on third party libraries
- Support for an evolving domain model
- Limited need for repetitive coding; support for scaffolding and/or metaannotations
Any hints highly appreciated!
Yours,
J.
CRUD is indeed a piece of cake using JSF 2.0 provided standard facility: a
@ViewScopedbean in combination with a<h:dataTable>basically already suffices. Here’s a code example which is shamelessly copied from this article.Bean:
Page:
Further, Netbeans has some useful wizards to genreate a CRUD application based on a datamodel.