Spring Day_4

12345678910
Across
  1. 3. This class lets you map url patterns without having to name your beans in a special way
  2. 6. handleRequest() returns this type of value which is the logical name of the view that should render the results
  3. 7. This class in Spring MVC will control the input from the presentation layer and decides the service object to be invoked
  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 is used to transfer data from the controller class to the JSP
  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. 4. This object contains both the model data and logical name of view
  4. 5. This maps URL patterns to Controller objects
  5. 8. This is one of the many challenges while creating a web-based application