I've got a very simple form that posts to a processing jsp page. The processing page amounts to
The Handler bean has getter and setter methods for the form values of the submitting page. However, unless I specifically hard code a property/value pair, the setProperty method is never hit.
Is there something more that I need to do on the submitting form, other than method="post" action="update.jsp" for the bean to access the form values?
Thanks in advance.
Code:
<jsp:useBean id="Handler" class="user.getEmployeeFormData" scope="request" >
<jsp:setProperty name="Handler" property="*" />
</jsp:useBean>
<jsp:forward page="UpdateEmployeeDB" />
The Handler bean has getter and setter methods for the form values of the submitting page. However, unless I specifically hard code a property/value pair, the setProperty method is never hit.
Is there something more that I need to do on the submitting form, other than method="post" action="update.jsp" for the bean to access the form values?
Thanks in advance.