June 2014
Beginner to intermediate
304 pages
7h 25m
English
In Spring MVC, controller methods are the final destination point that a web request can reach. After being invoked, the controller method starts to process the web request by interacting with the service layer to complete the work that needs to be done. Usually, the service layer executes some business operations on domain objects and calls the persistence layer to update the domain objects. After the processing has been completed by the service layer object, the controller is responsible for updating and building up the model object and chooses a view for the user to see next as a response.
Remember that Spring MVC always keeps the controllers unaware of any view technology used. That's why the controller ...
Read now
Unlock full access