I found the solution now. Just override invalid.fieldvalue.<field-name> in your properties file. for example:
invalid.fieldvalue.aField=Ivalid value for "aField". Thanks a lot, your answer got me on the right track. Greg Lindholm-2 wrote: > > You may have a different problem then you think; > > The @RequiredFieldValidator does not make any sense on a int > (primitive) field as an int cannot be null. The validation interceptor > checks the values on the fields after params interceptor sets the > fields. The RequiredFieldValidator checks if the field is null which > will never be the case for a primitive field. > > > -- View this message in context: http://old.nabble.com/RequiredFieldValidator-and-error-message-from-property-file-via-key-tp26640581p26669544.html Sent from the Struts - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]

