parms.put("color", "Red");
parms.put("fruit", "Apple");
parms.put("animal", "Rabbit");
request.setAttribute("parms", parms);
TestBean bean = new TestBean();
request.setAttribute("testBean", bean);
// Just forward to the form - no preparation required
return mapping.findForward("success");