From the wiki page about JSF I've learnt that it's considered as an MVP framework. But I cannot realy understand why.
Actully, beans do not contain a reference to View in themselves. There's also a data bidinig mechanism between Facelets and Managed beans.
So I would say that Managed Beans are more ViewModel
than Presenter
, as that Presenter
usually contain a View
interface in itself like in that example.
QUESTION: Why is JSF considered MVP but not MVVM framework?