Struts

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