Spring / Spring MVC Interview questions
What is ModelAndView in Spring MVC Framework?
ModelAndView is an object that holds both the model and view. The handler returns the ModelAndView object and DispatcherServlet resolves the view using View Resolvers and View.
The View is an object which contains view name in the form of the String and model is a map to add multiple objects.
In the below example 'employeeDetails' is the view name.
ModelAndView model = new ModelAndView("employeeDetails"); model.addObject("employeeObj", new EmployeeBean(123)); model.addObject("msg", "Employee information."); return model;
Programming Tip : Get an instant remote access to your essential programming/testing work from anywhere on any device(PC/Mac/Linux/android/iOS) by accessing your programming tools online with high performance hosted citrix xendesktop with an affordable xendesktop pricing. Learn more about Hosted SharePoint, QuickBooks Cloud Hosting and Office 365 suite Enterprise E3 by visiting Apps4Rent.com.
More Related questions...