mvc is one architecture pattern describes as to devide our system in to 3 parts
model : responsible for business logic
view : responsible for presentation logic
controller : responsible for controlling logic
what is controlling logic ?
controlling logic is nothing but controlling request &response flow i.e, Accepting the client request , delegating the request to model, collecting the response from model ,making available the response content to view and dispatching the control to view .
why to follow MVC?
for the purpose of " loose -coupling and parallel development" in java also we are having some recommended architectures using which we can make our apps design as simple possible
model -1 architectures
model : responsible for business logic
view : responsible for presentation logic
controller : responsible for controlling logic
what is controlling logic ?
controlling logic is nothing but controlling request &response flow i.e, Accepting the client request , delegating the request to model, collecting the response from model ,making available the response content to view and dispatching the control to view .
why to follow MVC?
for the purpose of " loose -coupling and parallel development" in java also we are having some recommended architectures using which we can make our apps design as simple possible
model -1 architectures