Going through this little tutorial for creating a simple CRUD page with JSF, I stumbled over the Bean definition there. In that article, a Bean is defined as an Object that implements Serializable
and consists of a List and a POJO instance, getting its content from the DAO. Now for my other servlet operations, I already had created POJOs and respective DAOs for database operations; but I thought the "Bean" was the POJO with its getters and setters, modeled to be consistent with the DB. If I get the tutorial right, now I should have "another bean" for every Bean I already created to be able to use JSF, correct?
(seems somehow redundant, esp. the usage of the term "Bean" here, if I got that right)