Is the model-view-controller-pattern commonly used in Java?
I heard, that it’s common to use just 2 components of it, so that the view and the controller are only 1 component, communicating with the model.
Is the model-view-controller-pattern commonly used in Java? I heard, that it’s common to use
Share
I think the question may be too wide to answer, but, to make things clear to you:
So in short, the answer to your question is: Yes, the MVC pattern is widely used in java and normally the views and the controllers have their own roles, maybe in swing that concept is kind of mixed but in other type of applications not so much.
Cheers!