SE452: Homework [12/12] Previous pageContents

Goal: To use a RequestDispatcher, a JavaBean, and JSP/Servlet integration.

  1. Create a JSP as a submission form
  2. Create a JSP as a results form
  3. Create a JavaBean that will hold and process the form data. The processing could be validation, or manipulation of the form in some way for display in the second JSP.
  4. Create a servlet to submit the input form to.
  5. Have the servlet take the input JSP's parameters, populate the JavaBean, then based on the input, either forward back to the input form or to the final JSP for displaying the results.

Supply the application as a deployable war file. Test deploying it before submitting it to make sure you have the format right. Place the source files for the servlet in a src directory in the war file. Please link the homework assignment to the index.html file in the document root.

Grading Breakdown:

ItemPoints
configuration (web.xml)10
input form10
JSP that uses the JavaBean10
Proper JavaBean implementation10
Proper use of RequestHandler10
concept and implementation30
Coding style and JavaDoc10
Proper Submission10
Total:100

Previous pageContents