• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

field validation problems in struts-need help

 
Ranch Hand
Posts: 32
Netbeans IDE Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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.
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic