my dog learned polymorphism
The moose likes Struts and the fly likes field validation problems in struts-need help Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Frameworks » Struts
Reply Bookmark "field validation problems in struts-need help" Watch "field validation problems in struts-need help" New topic
Author

field validation problems in struts-need help

Santosh Ganapa
Greenhorn

Joined: Mar 27, 2011
Posts: 19
Error is:-
[ServletException in:CustomerDetailsO.jsp] /CustomerDetailsO.jsp(20,20) Unable to find setter method for attribute: errorKey'

CustomerDetailsO.jsp is:-
<html:form action="/submitCustomerForm">
<table> <tr> <td> User Name </td>
<td>
<html:text property="firstName" errorKey="org.apache.struts.action.ERROR" />
</td>
<td>
<html:errors property="firstName" />
</td>
</tr>
<tr> <td> Password </td>
<td>
<html:text property="lastName" errorKey="org.apache.struts.action.ERROR" />
</td>
<td>
<html:errors property="fastName" />
</td>
</tr>
<tr> <td></td>
<td>
<html:submit value="Login" />
</td>
<td></td>
</tr>
</table>
</html:form>


CustomerForm.java (Validator Form) is:-

public class CustomerForm extends org.apache.struts.validator.ValidatorForm {
private String firstName;
private String lastName;
……..//getters and setters
public ActionErrors validate(ActionMapping mapping, HttpServletRequest request) {
ActionErrors errors = new ActionErrors ();
if (getFirstName() == null || getFirstName().length() < 1) {
errors.add ("firstName", new ActionMessage("error.firstName.required"));
}
if (getLastName() == null || getLastName().length() < 1) {
errors.add ("lastName", new ActionMessage("error.lastName.required"));
} else if (getLastName().length() < 6) {
errors.add("lastName", new ActionMessage("error.lastName.minlength"));
}
return errors; }
App1Messages.properties resource bundle file:-

# -- standard errors --
errors.header=<div >
errors.prefix=<font face="Monotype Corsiva" color="Green" >
errors.suffix=</font>
errors.footer=</div>
# -- validator --
errors.invalid={0} is invalid.
errors.maxlength={0} can not be greater than {1} characters.
…..
error.firstName.required = User's First Name is required.
error.lastName.required = Last Name is required.
error.lastName.minlength = Last Name can not be less than 6 characters.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: field validation problems in struts-need help
 
Similar Threads
Doubt in Validating the values form database
Doubt in Action Form
How to display error message
Formatting the Errors
How to Validate duplicate entries in database using struts1