Struts

12345678910111213141516171819202122232425
Across
  1. 7. In order to use the Struts 2 tag on the view page, you must include the _________ directive.
  2. 9. These are called after filters, before action methods, apply common functionalities like validation, conversion etc.
  3. 10. The data type of the return of an action class.
  4. 12. The method that check whether there are any action-level error messages.
  5. 14. Each field error messages can be added using the _________ method.
  6. 16. The <_________> element maps an exception type to a view name.
  7. 18. On the action class, the _________ method contain the validation rules.
  8. 19. The simple string returned by the action class when a validation error is found.
  9. 24. THe method to add action-level error messages.
  10. 25. The <_________> element defines global view names.
Down
  1. 1. In order to display the exception name the page should include <s:property value="_________"/>.
  2. 2. Filters requests to the applications and handles how the user interface reacts to the user’s input.
  3. 3. The class used to send information feedback message to user and is display via <s:actionmessage/>.
  4. 4. _________ classes contains the execute methods which is usually storing and/or retrieving information from a database the view.
  5. 5. The class used to send error feedback message to user and is display via <s:actionerror/>.
  6. 6. An open source framework which makes building web applications easier, based on Java Servlets and JSP technologies.
  7. 8. Struts 2.0 implements design pattern.
  8. 11. The method that check whether there are any action-level messages.
  9. 13. MVC component implemented by action class.
  10. 15. In order to display the exception stack trace the page should include <s:property value="_________"/>.
  11. 17. A software foundation in which struts was denoted.
  12. 20. Type of exceptions which are not caught by the regular try-catch clause.
  13. 21. This is the method where we define the behavior of the current action.
  14. 22. Presentation part of the MVC.
  15. 23. A web application _________ is a piece of structural software that provides automation of common tasks as well as a built-in architectural solution that can be easily inherited by applications.