Spring Day_4

12345678910
Across
  1. 4. This maps URL patterns to Controller objects
  2. 6. This is one of the many challenges while creating a web-based application
  3. 8. This class lets you map url patterns without having to name your beans in a special way
  4. 9. The class configured in web.xml to ensure that all the configuration files are loaded in Spring
  5. 10. This is the formal parameter in the controller class method which will carry the validation errors if any
Down
  1. 1. This class in Spring MVC will control the input from the presentation layer and decides the service object to be invoked
  2. 2. This class prefixes the view name returned in the ModelAndView with the value of its prefix property and suffixes it with value from its suffix property
  3. 3. This object contains both the model data and logical name of view
  4. 5. handleRequest() returns this type of value which is the logical name of the view that should render the results
  5. 7. This class is used to transfer data from the controller class to the JSP